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_Invite")] public class SSP_InviteLogEntity: OldBaseEntity { [SugarColumn(ColumnName = "SSPI_ID")] public override string Id { get => base.Id; set => base.Id = value; } //public string SSPI_ID { get; set; } public string SSPI_Openid { get; set; } public DateTime SSPI_AddTime { get; set; } public string SSPI_Code { get; set; } public string SSPI_Remarks { get; set; } public string SSPI_CodeID { get; set; } public int SSPI_Type { get; set; } } public class OldInviteLogEntity : OldBaseEntity { /// /// 部门Id /// [SugarColumn(ColumnDescription = "部门Id")] public string OrgId { get; set; } /// /// 部门名称 /// [SugarColumn(ColumnDescription = "部门名称")] public string OrgName { get; set; } /// /// 邀请码 /// [SugarColumn(ColumnDescription = "邀请码")] public string InviteCode { get; set; } /// /// 微信OpenId /// [SugarColumn(ColumnDescription = "微信OpenId")] public string WXOpenId { get; set; } /// /// 电话 /// [SugarColumn(ColumnDescription = "电话")] public string PhoneNumber { get; set; } /// /// 姓名 /// [SugarColumn(ColumnDescription = "姓名")] public string? Name { get; set; } }