SSP_InviteEntity.cs 801 B

12345678910111213141516171819202122232425
  1. using SqlSugar;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace SnapshotWinFormsApp.Entities.OldHotline;
  8. [SugarTable("ZG_CityHotline_Ver3.dbo.SSP_InviteCode")]
  9. public class SSP_InviteEntity : OldBaseEntity
  10. {
  11. [SugarColumn(ColumnName = "SIC_Byte")]
  12. public override string Id { get; set; }
  13. //public int SIC_ID { get; set; }
  14. public int SIC_PID { get; set; }
  15. public string SIC_BMName { get; set; }
  16. public string SIC_Tel { get; set; }
  17. public string SIC_Code { get; set; }
  18. public string SIC_Code2 { get; set; }
  19. public string SIC_imgUrl { get; set; }
  20. public int SIC_OrderID { get; set; }
  21. public string SIC_Codeold { get; set; }
  22. //public string SIC_Byte { get; internal set; }
  23. }