RequestParamModel.ets 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. //通用请求后台参数
  2. import { MaterialInformationModel } from '../model/MaterialInformation'
  3. import { InDataClass } from '../pages/RfidAllocation'
  4. import { detailsListvlass } from '../view/IntelligentWarehousingOutbound'
  5. import MaterialInfo from './MaterialInfo'
  6. import Orders from './Orders'
  7. export default class RequestParamModel {
  8. stanCode?: string
  9. data?: InDataClass
  10. deviceNo?: string
  11. rgvNo?: string
  12. destY?: string
  13. destX?: string
  14. dest?: string
  15. src?: string
  16. num?: string | number
  17. mtype?: string
  18. position?: string
  19. boxNo?: string
  20. statNo?: string
  21. queryComplete?: string
  22. materialNo?: string
  23. vehicleNo?: string
  24. materialCode?: string
  25. operationId?: number | string
  26. qrCode?: string
  27. workOrderCode?: string
  28. pageNo?: number
  29. pageSize?: number
  30. detailsList?: detailsListvlass[]
  31. taskId?: string
  32. id?: string
  33. taskNo?: string
  34. type?: number
  35. materialName?: string
  36. coordinate?: string
  37. enable?: number
  38. loginName?: string
  39. password?: string
  40. orgId?: number
  41. stationId?: number
  42. userName?: string
  43. housetype?: number
  44. houseType?: number
  45. equitCode?: string
  46. processId?: number
  47. userId?: string
  48. workingHoursRate?: number
  49. processUserReportList?: RequestParamModel[]
  50. accessoriesType?: string
  51. label?: string
  52. circulationDetail?: MaterialInformationModel[]
  53. houseNo?: string
  54. targetType?: string
  55. vehicleCode?: string
  56. vehicleId?: number
  57. vehicleName?: string
  58. orders?: Orders[]
  59. creator?: string
  60. state?: number
  61. orderId?: string
  62. processVehicleMaterialList?: MaterialInformationModel[]
  63. wcsType?: string
  64. readState?: number
  65. stationIp?: string
  66. }