SSP_AreaUserEntity.cs 757 B

1234567891011121314151617181920212223242526
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace SnapshotWinFormsApp.Entities.OldHotline;
  8. [SugarTable("SSP_AreaUser")]
  9. public class SSP_AreaUserEntity : OldBaseEntity<string>
  10. {
  11. [SugarColumn(ColumnName = "ID")]
  12. public override string Id { get; set ; }
  13. public string AreaID { get; set; }
  14. public string AreaName { get; set; }
  15. public string AreaTown { get; set; }
  16. public string Name { get; set; }
  17. public string Tel { get; set; }
  18. public string Sex { get; set; }
  19. public int Count { get; set; }
  20. public string InsertTime { get; set; }
  21. public int InsertUserID { get; set; }
  22. public string InsertUserName { get; set; }
  23. }