1
yanjinhui
7 天以前 0746808ea9b8e197b263f911fec116cadd0f34fb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
 
namespace WIDESEAWCS_Model.Models
{
    [SqlSugar.SugarTable("Sys_UserFace", "用户人脸识别表")]
    public class Sys_UserFace
    {
        [SqlSugar.SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键ID")]
        public int Id { get; set; }
 
        [SqlSugar.SugarColumn(ColumnDescription = "用户ID", IsNullable = false)]
        public int User_Id { get; set; }
 
        [SqlSugar.SugarColumn(Length = 100, IsNullable = false, ColumnDescription = "用户名")]
        public string UserName { get; set; }
 
        [SqlSugar.SugarColumn(Length = 500, IsNullable = false, ColumnDescription = "图片名称")]
        public string UserFaceImageName { get; set; }
 
        [SqlSugar.SugarColumn(Length = 2000, IsNullable = false, ColumnDescription = "图片路径")]
        public string UserFaceImagePath { get; set; }
    }
}