SSP_VolunteerList.cs 747 B

1234567891011121314151617181920212223
  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("ZG_CityHotline_Ver3.dbo.SSP_VolunteerList")]
  9. public class SSP_VolunteerList : OldBaseEntity
  10. {
  11. [SugarColumn(ColumnName = "SVL_ID")]
  12. public override string Id { get => base.Id; set => base.Id = value; }
  13. //public int SVL_ID { get; set; }
  14. public string SVL_Name { get; set; }
  15. public string SVL_Tel { get; set; }
  16. public string SVL_Code { get; set; }
  17. public string SVL_Age { get; set; }
  18. public string SVL_Education { get; set; }
  19. public string SVL_Address { get; set; }
  20. public string SVL_Industry { get; set; }
  21. }