index.ts 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /**
  2. * ShelvesAddDTO,货架添加对象 pt_shelves
  3. */
  4. export interface WarehouseShelfAddDTO {
  5. /**
  6. * 备注
  7. */
  8. remark?: string;
  9. /**
  10. * 货架名称
  11. */
  12. shelvesName?: string;
  13. /**
  14. * 货架编号
  15. */
  16. sn?: string;
  17. /**
  18. * 仓库ID
  19. */
  20. warehouseId: number;
  21. [property: string]: any;
  22. }
  23. /**
  24. * WarehouseAddDTO,仓库添加对象 pt_warehouse
  25. */
  26. export interface WarehouseAddDTO {
  27. /**
  28. * 仓库地址
  29. */
  30. address?: string;
  31. /**
  32. * 面积
  33. */
  34. area?: number;
  35. /**
  36. * 负责人ID
  37. */
  38. contact?: string;
  39. /**
  40. * 负责人
  41. */
  42. contactName?: string;
  43. /**
  44. * 仓库附加信息(json 字符串)
  45. */
  46. extraInfo?: string;
  47. /**
  48. * 备注
  49. */
  50. remark?: string;
  51. /**
  52. * 仓库编号
  53. */
  54. sn?: string;
  55. /**
  56. * 仓库条件
  57. */
  58. storageCondition?: string;
  59. /**
  60. * 联系电话
  61. */
  62. tel?: string;
  63. /**
  64. * 仓库类型
  65. */
  66. type?: string;
  67. /**
  68. * 仓库名称
  69. */
  70. warehouseName?: string;
  71. /** * 货架列表
  72. */
  73. shelves?: WarehouseShelfAddDTO[];
  74. [property: string]: any;
  75. }