/** * @description: 列表查询参数 */ export interface GetMicroflowManagementListParamsModel { current?: number // 当前页 size?: number // 分页条数 sortBy?: string // 排序 fileds?: string // 查询字段 name?: string // } /** * @description: 单条查询 参数 */ export interface GetMicroflowManagementByIdParamsModel { id?: string } /** * @description: 新增 参数 */ export interface SaveMicroflowManagementParamsModel { contact?: string // 联系人 tel?: string // 联系电话 status?: string // 1启用0禁用 remark?: string // 备注 name?: string // microflow名称 } /** * @description: 修改 参数 */ export interface UpdateMicroflowManagementParamsModel extends SaveMicroflowManagementParamsModel { id?: string } /** * @description: 删除 参数 */ export interface RemoveMicroflowManagementParamsModel { id?: string }