/** * @desc 获取库编码 */ import * as defs from '../../baseClass'; import { defHttp } from 'hailuo-http'; export interface Params {} export function request(params: Params): Promise> { return defHttp.get({ url: '/web/materialManage/getWarehouseCode', }); } export function mock(params: Params): Promise> { return defHttp.get({ url: '/mock/web/materialManage/getWarehouseCode', }); }