C#实现人脸识别【Users】

来源:互联网 发布:手机淘宝历史版本 编辑:程序博客网 时间:2024/06/05 18:59

这个类主要就是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; }    }}
原创粉丝点击