git commit -m 0911
This commit is contained in:
dhr
2025-09-11 18:45:28 +08:00
63 changed files with 1184 additions and 142 deletions

View File

@ -106,6 +106,6 @@ export const getFootNote = (data) => {
return request({
url: 'gps/equipmentSon/getList',
method: 'get',
data: data
params: data
});
};

View File

@ -122,6 +122,11 @@ export interface EquipmentQuery extends PageQuery {
*/
type?: string | number;
/**
* 展示用户/设备数据1=用户数据0=设备数据
*/
gpsType?: string | number;
/**
* 用户id
*/

View File

@ -53,7 +53,6 @@ export interface MaterialReceiveVO {
* 备注
*/
remark: string;
}
export interface MaterialReceiveForm extends BaseEntity {
@ -156,11 +155,13 @@ export interface MaterialReceiveForm extends BaseEntity {
* 备注
*/
remark?: string;
/**
* 附件
*/
attachmentId?: string | number;
}
export interface MaterialReceiveQuery extends PageQuery {
/**
* 项目id
*/
@ -201,11 +202,8 @@ export interface MaterialReceiveQuery extends PageQuery {
*/
supplierUnit?: string;
/**
* 日期范围参数
*/
params?: any;
/**
* 日期范围参数
*/
params?: any;
}

View File

@ -31,6 +31,7 @@ export interface FlowTaskVO {
version?: string;
applyNode?: boolean;
buttonList?: buttonList[];
projectName?: string;
}
export interface buttonList {

View File

@ -12,7 +12,8 @@ export default {
businessId: routerJumpVo.businessId,
type: routerJumpVo.type,
planMonth: routerJumpVo.planMonth,
taskId: routerJumpVo.taskId
taskId: routerJumpVo.taskId,
projectName: routerJumpVo.projectName
}
});
}

View File

@ -4,6 +4,7 @@ export interface RouterJumpVo {
type: string;
formCustom: string;
formPath: string;
projectName?: string;
}
export interface StartProcessBo {