C#实现人脸识别【Users】

这个类主要就是model类,对应数据库中的表users:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Camtest
{
    public class Users
    {
        //编号
        public long id { get; set; }
        //姓名
        public string name { get; set; }
        //密码
        public string password { get; set; }
        //年龄
        public int age { get; set; }
        //电话
        public string phone { get; set; }
        //地址
        public string address { get; set; }
        //脸
        public string picture { get; set; }
    }
}
原文地址:https://www.cnblogs.com/a1111/p/12816127.html