SSP_Volunteer.cs 1.3 KB

123456789101112131415161718192021222324252627282930313233343536
  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. public class SSP_Volunteer : OldBaseEntity
  9. {
  10. [SugarColumn(ColumnName = "SV_ID")]
  11. public override string Id { get => base.Id; set => base.Id = value; }
  12. //public int SV_ID { get; set; }
  13. public string SV_WorkType { get; set; }
  14. public string SV_Name { get; set; }
  15. public string SV_Tel { get; set; }
  16. public string SV_ISDeclare { get; set; }
  17. public string SV_Address { get; set; }
  18. public string SV_Address2 { get; set; }
  19. public string SV_latLon { get; set; }
  20. public string SV_Remarks { get; set; }
  21. public string SV_FileKey { get; set; }
  22. public string SV_DeclareUserName { get; set; }
  23. public string SV_DeclareUserTel { get; set; }
  24. public string SV_AddDate { get; set; }
  25. public string SV_WXOpenid { get; set; }
  26. public string SV_InspectionItems1 { get; set; }
  27. public string SV_InspectionItems2 { get; set; }
  28. public string SV_InspectionItems3 { get; set; }
  29. public string SV_InspectionItems4 { get; set; }
  30. public string SV_InspectionItems5 { get; set; }
  31. public string SV_InspectionItems6 { get; set; }
  32. public string SV_InspectionItems7 { get; set; }
  33. public string SV_InspectionItems8 { get; set; }
  34. }