57 lines
1.4 KiB
TypeScript
57 lines
1.4 KiB
TypeScript
export {}
|
||
|
||
declare global {
|
||
namespace GoodsCategoryTypes {
|
||
interface SearchGoodsCategoryParam extends G.PageParam {
|
||
// 业务类型;字典代码:biz_type,ZaiShengPin-->再生品、HuiShouPin-->回收品、QiTa-->其他
|
||
bizType?: string
|
||
keywords?: string
|
||
}
|
||
|
||
interface SearchGoodsCategoryResult {
|
||
// Id
|
||
id: string
|
||
// 业务类型;字典代码:biz_type,ZaiShengPin-->再生品、HuiShouPin-->回收品、QiTa-->其他
|
||
bizType?: string
|
||
// 国标码
|
||
sn?: string
|
||
// 分类名称
|
||
categoryName?: string
|
||
// 图片
|
||
picture?: string
|
||
// 排序
|
||
sort?: number
|
||
// 创建时间
|
||
createTime?: string
|
||
// 备注
|
||
memo?: string
|
||
}
|
||
|
||
interface AddGoodsCategoryParam {
|
||
// 业务类型;字典代码:biz_type,ZaiShengPin-->再生品、HuiShouPin-->回收品、QiTa-->其他
|
||
bizType?: string
|
||
// 分类名称
|
||
categoryName?: string
|
||
// 图片
|
||
picture?: string
|
||
// 排序
|
||
sort?: number
|
||
memo?: string
|
||
}
|
||
|
||
interface ModifyGoodsCategoryParam {
|
||
// Id
|
||
id?: string
|
||
// 业务类型;字典代码:biz_type,ZaiShengPin-->再生品、HuiShouPin-->回收品、QiTa-->其他
|
||
bizType?: string
|
||
// 分类名称
|
||
categoryName?: string
|
||
// 图片
|
||
picture?: string
|
||
// 排序
|
||
sort?: number
|
||
memo?: string
|
||
}
|
||
}
|
||
}
|