BaseWarehouse.cs 1.1 KB

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