/** * @description: 新增服务参数 */ export interface AddProcessConnectorsParamsModel { name?: string // 服务名称 httpUrl?: string // 请求地址 httpMethod?: string // 请求方式 headers?: string // 请求头 body?: string // json参数 params?: string // query参数 } /** * @description: 修改服务参数 */ export interface UpdateProcessConnectorsModel extends AddProcessConnectorsParamsModel { id?: string // } /** * @description: 删除服务参数 */ export interface DeleteProcessConnectorsParamsModel { id?: string // } /** * @description: 单条查询参数 */ export interface GetProcessConnectorsParamsByIdModel { id?: string // } /** * @description: 列表查询参数 */ export interface GetProcessConnectorsParamsModel { current?: number // 当前页 size?: number // 分页条数 code?: string // 服务编码 name?: string // 服务名称 }