/** * @desc 根据ID删除相关库容信息 */ import * as defs from '../../baseClass'; import { defHttp } from 'hailuo-http'; export interface Params { /** id */ id: number; } export function request(params: Params): Promise> { return defHttp.get({ url: '/web/materialManage/deleteById', params, }); } export function mock(params: Params): Promise> { return defHttp.get({ url: '/mock/web/materialManage/deleteById', params, }); }