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; }
|
}
|
}
|