调整代码缩进
This commit is contained in:
parent
f4684fb0dc
commit
e83f23908a
@ -19,37 +19,36 @@ export interface BusinessFormVO {
|
|||||||
*/
|
*/
|
||||||
formName: string;
|
formName: string;
|
||||||
wfFormDefinitionVo: {
|
wfFormDefinitionVo: {
|
||||||
/**
|
/**
|
||||||
* 主键
|
* 主键
|
||||||
*/
|
*/
|
||||||
id: string | number;
|
id: string | number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 动态表单id
|
* 动态表单id
|
||||||
*/
|
*/
|
||||||
formId: string | number;
|
formId: string | number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 流程定义id
|
* 流程定义id
|
||||||
*/
|
*/
|
||||||
processDefinitionKey: string;
|
processDefinitionKey: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 流程定义名称
|
* 流程定义名称
|
||||||
*/
|
*/
|
||||||
processDefinitionName: string;
|
processDefinitionName: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 流程定义id
|
* 流程定义id
|
||||||
*/
|
*/
|
||||||
processDefinitionId: string | number;
|
processDefinitionId: string | number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 流程定义版本
|
* 流程定义版本
|
||||||
*/
|
*/
|
||||||
processDefinitionVersion: number;
|
processDefinitionVersion: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface BusinessFormForm extends BaseEntity {
|
export interface BusinessFormForm extends BaseEntity {
|
||||||
@ -82,11 +81,9 @@ export interface BusinessFormForm extends BaseEntity {
|
|||||||
* 表单值
|
* 表单值
|
||||||
*/
|
*/
|
||||||
contentValue?: string;
|
contentValue?: string;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface BusinessFormQuery extends PageQuery {
|
export interface BusinessFormQuery extends PageQuery {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 申请编码
|
* 申请编码
|
||||||
*/
|
*/
|
||||||
@ -97,11 +94,8 @@ export interface BusinessFormQuery extends PageQuery {
|
|||||||
*/
|
*/
|
||||||
formName?: string;
|
formName?: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 日期范围参数
|
* 日期范围参数
|
||||||
*/
|
*/
|
||||||
params?: any;
|
params?: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -23,7 +23,6 @@ export interface CategoryVO {
|
|||||||
* 排序
|
* 排序
|
||||||
*/
|
*/
|
||||||
sortNum: number;
|
sortNum: number;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface CategoryForm extends BaseEntity {
|
export interface CategoryForm extends BaseEntity {
|
||||||
@ -51,7 +50,6 @@ export interface CategoryForm extends BaseEntity {
|
|||||||
* 排序
|
* 排序
|
||||||
*/
|
*/
|
||||||
sortNum?: number;
|
sortNum?: number;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface CategoryQuery extends PageQuery {
|
export interface CategoryQuery extends PageQuery {
|
||||||
@ -64,5 +62,4 @@ export interface CategoryQuery extends PageQuery {
|
|||||||
* 分类编码
|
* 分类编码
|
||||||
*/
|
*/
|
||||||
categoryCode?: string;
|
categoryCode?: string;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -6,35 +6,35 @@ export interface FormVO extends BaseEntity {
|
|||||||
status?: string;
|
status?: string;
|
||||||
remark: string;
|
remark: string;
|
||||||
wfFormDefinitionVo: {
|
wfFormDefinitionVo: {
|
||||||
/**
|
/**
|
||||||
* 主键
|
* 主键
|
||||||
*/
|
*/
|
||||||
id: string | number;
|
id: string | number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 动态表单id
|
* 动态表单id
|
||||||
*/
|
*/
|
||||||
formId: string | number;
|
formId: string | number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 流程定义id
|
* 流程定义id
|
||||||
*/
|
*/
|
||||||
processDefinitionKey: string;
|
processDefinitionKey: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 流程定义名称
|
* 流程定义名称
|
||||||
*/
|
*/
|
||||||
processDefinitionName: string;
|
processDefinitionName: string;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 流程定义id
|
* 流程定义id
|
||||||
*/
|
*/
|
||||||
processDefinitionId: string | number;
|
processDefinitionId: string | number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 流程定义版本
|
* 流程定义版本
|
||||||
*/
|
*/
|
||||||
processDefinitionVersion: number;
|
processDefinitionVersion: number;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -28,7 +28,6 @@ export interface FormDefinitionVO {
|
|||||||
* 流程定义版本
|
* 流程定义版本
|
||||||
*/
|
*/
|
||||||
processDefinitionVersion: number;
|
processDefinitionVersion: number;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface FormDefinitionForm extends BaseEntity {
|
export interface FormDefinitionForm extends BaseEntity {
|
||||||
@ -61,11 +60,9 @@ export interface FormDefinitionForm extends BaseEntity {
|
|||||||
* 流程定义版本
|
* 流程定义版本
|
||||||
*/
|
*/
|
||||||
processDefinitionVersion?: number;
|
processDefinitionVersion?: number;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export interface FormDefinitionQuery extends PageQuery {
|
export interface FormDefinitionQuery extends PageQuery {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 动态表单id
|
* 动态表单id
|
||||||
*/
|
*/
|
||||||
@ -91,11 +88,8 @@ export interface FormDefinitionQuery extends PageQuery {
|
|||||||
*/
|
*/
|
||||||
processDefinitionVersion?: number;
|
processDefinitionVersion?: number;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 日期范围参数
|
* 日期范围参数
|
||||||
*/
|
*/
|
||||||
params?: any;
|
params?: any;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -152,4 +152,3 @@ export const deleteMultiInstanceExecution = (data: object) => {
|
|||||||
data: data
|
data: data
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -36,4 +36,3 @@ export const getUserListByIds = (userIdList: Array<any>) => {
|
|||||||
method: 'get'
|
method: 'get'
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user