12345678910111213141516171819202122232425 |
- 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_InviteCode")]
- public class SSP_InviteEntity : OldBaseEntity
- {
- [SugarColumn(ColumnName = "SIC_Byte")]
- public override string Id { get; set; }
- //public int SIC_ID { get; set; }
- public int SIC_PID { get; set; }
- public string SIC_BMName { get; set; }
- public string SIC_Tel { get; set; }
- public string SIC_Code { get; set; }
- public string SIC_Code2 { get; set; }
- public string SIC_imgUrl { get; set; }
- public int SIC_OrderID { get; set; }
- public string SIC_Codeold { get; set; }
- //public string SIC_Byte { get; internal set; }
- }
|