审核工作流

This commit is contained in:
Teo
2025-08-09 18:02:06 +08:00
parent b6e4f84570
commit 6bbe8a83f7
16 changed files with 264 additions and 204 deletions

View File

@ -108,3 +108,16 @@ export const getPcDetail = (id: string | number): AxiosPromise<CailiaoshebeiVO>
method: 'get'
});
};
/**
* 查询物资-材料设备选择列表
* @param query
* @returns {*}
*/
export const listSelectCailiaoshebei = (query?: any): AxiosPromise<CailiaoshebeiVO[]> => {
return request({
url: '/cailiaoshebei/materialbatchdemandplan/masterDataList',
method: 'get',
params: query
});
};

View File

@ -3,7 +3,7 @@ export interface CailiaoshebeiVO {
* 主键ID
*/
id: string | number;
cailiaoshebeiId?: string | number;
/**
* 批次ID
*/

View File

@ -43,7 +43,6 @@ export interface MonthPlanVO {
* 完成审核状态
*/
completeAuditStatus: string;
}
export interface MonthPlanForm extends BaseEntity {
@ -51,6 +50,10 @@ export interface MonthPlanForm extends BaseEntity {
* 主键ID
*/
id?: string | number;
/**
* 是否设计
*/
isDesign?: boolean;
/**
* 项目ID
@ -91,11 +94,9 @@ export interface MonthPlanForm extends BaseEntity {
* 完成审核状态
*/
completeAuditStatus?: string;
}
export interface MonthPlanQuery extends PageQuery {
/**
* 项目ID
*/
@ -136,11 +137,8 @@ export interface MonthPlanQuery extends PageQuery {
*/
completeAuditStatus?: string;
/**
* 日期范围参数
*/
params?: any;
/**
* 日期范围参数
*/
params?: any;
}