using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SnapshotWinFormsApp.Entities.OldHotline; [SugarTable("ZG_CityHotline_Ver3.dbo.SSP_VolunteerList")] public class SSP_VolunteerList : OldBaseEntity { [SugarColumn(ColumnName = "SVL_ID")] public override string Id { get => base.Id; set => base.Id = value; } //public int SVL_ID { get; set; } public string SVL_Name { get; set; } public string SVL_Tel { get; set; } public string SVL_Code { get; set; } public string SVL_Age { get; set; } public string SVL_Education { get; set; } public string SVL_Address { get; set; } public string SVL_Industry { get; set; } }