BaseWarehouse.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. using System;
  2. using System.Collections.Generic;
  3. using SqlSugar;
  4. namespace wms.sqlsugar.model.fj
  5. {
  6. /// <summary>
  7. /// 仓库表
  8. /// </summary>
  9. [Tenant("fj")]
  10. [SugarTable("Base_Warehouse")]
  11. public partial class BaseWarehouse:BaseModel
  12. {
  13. /// <summary>
  14. /// IsStop
  15. /// </summary>
  16. [SugarColumn(ColumnDataType ="int" , IsNullable = false)]
  17. public int IsStop { get; set; }
  18. /// <summary>
  19. /// Code
  20. /// </summary>
  21. [SugarColumn(ColumnDataType = "nvarchar", Length = 50, IsNullable = false)]
  22. public string Code { get; set; }
  23. /// <summary>
  24. /// Name
  25. /// </summary>
  26. [SugarColumn(ColumnDataType = "nvarchar", Length = 100, IsNullable = false)]
  27. public string Name { get; set; }
  28. /// <summary>
  29. /// TypeNum
  30. /// </summary>
  31. [SugarColumn(ColumnDataType ="int" , IsNullable = false)]
  32. public int TypeNum { get; set; }
  33. /// <summary>
  34. /// ConfigId
  35. /// </summary>
  36. [SugarColumn(ColumnDataType = "bigint", IsNullable = false)]
  37. public long ConfigId { get; set; }
  38. }
  39. }