平安校园
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.
 
 
 
 
 
 

29 рядки
1.1 KiB

  1. namespace SafeCampus.System;
  2. [SugarTable("PersonFaces", TableDescription = "人员人脸表")]
  3. [Tenant(SqlSugarConst.DB_DEFAULT)]
  4. [BatchEdit]
  5. [CodeGen]
  6. [IgnoreInitTable]
  7. public class PersonFaces
  8. {
  9. /// <summary>
  10. /// 人脸id
  11. /// </summary>
  12. [SugarColumn(ColumnDescription = "人脸id", IsPrimaryKey = true)]
  13. public string FaceId { get; set; }
  14. /// <summary>
  15. /// 人员id
  16. /// </summary>
  17. [SugarColumn(ColumnName = "PersonId", ColumnDescription = "人员id", ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = false)]
  18. public string PersonId { get; set; }
  19. /// <summary>
  20. /// 人脸url
  21. /// </summary>
  22. [SugarColumn(ColumnName = "FaceUrl", ColumnDescription = "班级名称", ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
  23. public string FaceUrl { get; set; }
  24. /// <summary>
  25. ///照片来源 该字段由系统使用,用于自动补录底库
  26. /// </summary>
  27. [SugarColumn(ColumnName = "Tag", ColumnDescription = "照片来源", IsOnlyIgnoreUpdate = true, ColumnDataType = StaticConfig.CodeFirst_BigString, IsNullable = true)]
  28. public string Tag { get; set; }
  29. }