12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- //通用请求后台参数
- import { MaterialInformationModel } from '../model/MaterialInformation'
- import { InDataClass } from '../pages/RfidAllocation'
- import { detailsListvlass } from '../view/IntelligentWarehousingOutbound'
- import MaterialInfo from './MaterialInfo'
- import Orders from './Orders'
- export default class RequestParamModel {
- stanCode?: string
- data?: InDataClass
- deviceNo?: string
- rgvNo?: string
- destY?: string
- destX?: string
- dest?: string
- src?: string
- num?: string | number
- mtype?: string
- position?: string
- boxNo?: string
- statNo?: string
- queryComplete?: string
- materialNo?: string
- vehicleNo?: string
- materialCode?: string
- operationId?: number | string
- qrCode?: string
- workOrderCode?: string
- pageNo?: number
- pageSize?: number
- detailsList?: detailsListvlass[]
- taskId?: string
- id?: string
- taskNo?: string
- type?: number
- materialName?: string
- coordinate?: string
- enable?: number
- loginName?: string
- password?: string
- orgId?: number
- stationId?: number
- userName?: string
- housetype?: number
- houseType?: number
- equitCode?: string
- processId?: number
- userId?: string
- workingHoursRate?: number
- processUserReportList?: RequestParamModel[]
- accessoriesType?: string
- label?: string
- circulationDetail?: MaterialInformationModel[]
- houseNo?: string
- targetType?: string
- vehicleCode?: string
- vehicleId?: number
- vehicleName?: string
- orders?: Orders[]
- creator?: string
- state?: number
- orderId?: string
- processVehicleMaterialList?: MaterialInformationModel[]
- wcsType?: string
- readState?: number
- stationIp?: string
- }
|