/** * @desc 通过管理域获取分厂信息 */ import * as defs from '../../baseClass'; import { defHttp } from 'hailuo-http'; export interface Params { /** isLabour */ isLabour?: number; /** 组织编码 */ orgCode?: string; } export function request( params: Params, ): Promise> { return defHttp.get({ url: '/web/base/factory', params, }); } export function mock( params: Params, ): Promise> { return defHttp.get({ url: '/mock/web/base/factory', params, }); }