1234567891011121314151617181920212223242526 |
- using SqlSugar;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace SnapshotWinFormsApp.Entities.OldHotline;
- [SugarTable("SSP_AreaUser")]
- public class SSP_AreaUserEntity : OldBaseEntity<string>
- {
- [SugarColumn(ColumnName = "ID")]
- public override string Id { get; set ; }
- public string AreaID { get; set; }
- public string AreaName { get; set; }
- public string AreaTown { get; set; }
- public string Name { get; set; }
- public string Tel { get; set; }
- public string Sex { get; set; }
- public int Count { get; set; }
- public string InsertTime { get; set; }
- public int InsertUserID { get; set; }
- public string InsertUserName { get; set; }
- }
|