njzscloud-dispose-web/src/pages/gds/goods-category/goods-category.d.ts

82 lines
2.2 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

export {}
declare global {
namespace GoodsCategoryTypes {
interface SearchGoodsCategoryParam extends G.PageParam {
// 业务类型字典代码biz_typeZaiShengPin-->再生品、HuiShouPin-->回收品、QiTa-->其他
bizType?: string
// 分类名称
categoryName?: string
// 创建时间范围
createTimes?: [ string | undefined, string | undefined ]
createTimeStart?: string
createTimeEnd?: string
}
interface SearchGoodsCategoryResult {
// Id
id: string
// 业务类型字典代码biz_typeZaiShengPin-->再生品、HuiShouPin-->回收品、QiTa-->其他
bizType?: string
// 国标码
sn?: string
// 分类名称
categoryName?: string
// 图片
picture?: string
// 排序
sort?: number
// 创建时间
createTime?: string
// 备注
memo?: string
}
interface AddGoodsCategoryParam {
// Id
id?: string
// 业务类型字典代码biz_typeZaiShengPin-->再生品、HuiShouPin-->回收品、QiTa-->其他
bizType?: string
// 分类名称
categoryName?: string
// 图片
picture?: string
// 排序
sort?: number
// 创建人 Idsys_user.id
creatorId?: string
// 修改人 Idsys_user.id
modifierId?: string
// 创建时间
createTime?: string
// 修改时间
modifyTime?: string
// 是否删除; 0-->未删除、1-->已删除
deleted?: boolean
}
interface ModifyGoodsCategoryParam {
// Id
id?: string
// 业务类型字典代码biz_typeZaiShengPin-->再生品、HuiShouPin-->回收品、QiTa-->其他
bizType?: string
// 分类名称
categoryName?: string
// 图片
picture?: string
// 排序
sort?: number
// 创建人 Idsys_user.id
creatorId?: string
// 修改人 Idsys_user.id
modifierId?: string
// 创建时间
createTime?: string
// 修改时间
modifyTime?: string
// 是否删除; 0-->未删除、1-->已删除
deleted?: boolean
}
}
}