| 123456789101112131415161718192021222324252627282930 |
- import {ListParams} from '.';
- /** 获取库位列表 */
- export type GetStorageListParams = {
- /** 库位编号 */
- storageLocationCode: string
- /** 库位名称 */
- storageLocationName: string
- /** 库位类型 */
- storageLocationType: string
- /** 是否禁用 */
- isNotDisable: string
- } & ListParams;
- /** 新增库位 */
- export type AddStorageParams = {
- /** 库位编号 */
- storageLocationCode: string
- /** 库位名称 */
- storageLocationName: string
- /** 是否是混合库位 */
- isNotDisable: string
- /** 所在仓库 */
- warehouseWhere: string
- };
- /** 修改仓库 */
- export type EditStorageParams = AddStorageParams & {
- id: string
- };
|