T_luxianming_sf.cs 439 B

123456789101112131415161718
  1. using SqlSugar;
  2. namespace Uninpho.DBOperation.Model
  3. {
  4. public class T_luxianming_sf
  5. {
  6. [SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
  7. public int Id { get; set; }
  8. //线路名
  9. public string Xlm { get; set; }
  10. //线路名缩写
  11. public string Xlmsx { get; set; }
  12. //线路等级
  13. public string Xldj { get; set; }
  14. public string Remark { get; set; }
  15. }
  16. }