using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using SqlSugar; using WIDESEAWCS_Core.DB.Models; using WIDESEAWCS_Core.Tenants; namespace WIDESEAWCS_Model.Models { [SugarTable("Dt_FaceRecognition", "人脸识别表"), MultiTenant] public class Dt_FaceRecognition:BaseEntity { /// /// id /// [SugarColumn(IsPrimaryKey = true, IsIdentity = true, ColumnDescription = "主键")] public int ID { get; set; } /// /// 人脸识别组 /// [SugarColumn(IsNullable = true, Length = 50, ColumnDescription = "人脸识别组")] public string GroupID { get; set; } } }