/** * @desc 新增发放领用人员 */ import * as defs from '../../baseClass'; import { defHttp } from 'hailuo-http'; export interface Params { /** name */ name: string; } export function request(params: Params): Promise> { return defHttp.get({ url: '/web/labour/create', params, }); } export function mock(params: Params): Promise> { return defHttp.get({ url: '/mock/web/labour/create', params, }); }