Flow04_ExpandRed_SMEntity.cs 956 B

1234567891011121314151617181920212223242526272829
  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("Flow04_ExpandRed_SM")]
  9. public class Flow04_ExpandRed_SMEntity : OldBaseEntity
  10. {
  11. [SugarColumn(ColumnName = "FER_ID")]
  12. public override string Id { get => base.Id; set => base.Id = value; }
  13. //public string FER_ID { get; set; }
  14. public string FER_FlowID { get; set; }
  15. public string FER_Code { get; set; }
  16. public string FER_AddTime { get; set; }
  17. public string FER_Tel { get; set; }
  18. public string FER_Money { get; set; }
  19. public string FER_Flag { get; set; }
  20. public string FER_ReleaseTime { get; set; }
  21. public string FER_Remarks { get; set; }
  22. public string FER_ClapType { get; set; }
  23. public string FER_THID { get; set; }
  24. public string FER_openid { get; set; }
  25. public string FER_Moneybf { get; set; }
  26. }