123456789101112131415161718192021222324252627282930313233343536 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SnapshotWinFormsApp.Entities.OldHotline;
- public class SSP_Volunteer : OldBaseEntity
- {
- [SugarColumn(ColumnName = "SV_ID")]
- public override string Id { get => base.Id; set => base.Id = value; }
- //public int SV_ID { get; set; }
- public string SV_WorkType { get; set; }
- public string SV_Name { get; set; }
- public string SV_Tel { get; set; }
- public string SV_ISDeclare { get; set; }
- public string SV_Address { get; set; }
- public string SV_Address2 { get; set; }
- public string SV_latLon { get; set; }
- public string SV_Remarks { get; set; }
- public string SV_FileKey { get; set; }
- public string SV_DeclareUserName { get; set; }
- public string SV_DeclareUserTel { get; set; }
- public string SV_AddDate { get; set; }
- public string SV_WXOpenid { get; set; }
- public string SV_InspectionItems1 { get; set; }
- public string SV_InspectionItems2 { get; set; }
- public string SV_InspectionItems3 { get; set; }
- public string SV_InspectionItems4 { get; set; }
- public string SV_InspectionItems5 { get; set; }
- public string SV_InspectionItems6 { get; set; }
- public string SV_InspectionItems7 { get; set; }
- public string SV_InspectionItems8 { get; set; }
- }
|