完善材料模块页面

This commit is contained in:
lcj
2025-03-11 16:11:07 +08:00
parent 6508d18826
commit 990c848a6c
13 changed files with 466 additions and 275 deletions

View File

@ -1,3 +1,5 @@
import { ContractorVO } from '@/api/project/contractor/types';
export interface ConstructionUserVO {
/**
* 主键id
@ -34,6 +36,11 @@ export interface ConstructionUserVO {
*/
contractorId: string | number;
/**
* 分包公司
*/
contractorVo: ContractorVO;
/**
* 班组id
*/
@ -138,7 +145,6 @@ export interface ConstructionUserVO {
* 备注
*/
remark: string;
}
export interface ConstructionUserForm extends BaseEntity {
@ -281,11 +287,9 @@ export interface ConstructionUserForm extends BaseEntity {
* 备注
*/
remark?: string;
}
export interface ConstructionUserQuery extends PageQuery {
/**
* 微信id
*/
@ -416,11 +420,8 @@ export interface ConstructionUserQuery extends PageQuery {
*/
salary?: number;
/**
* 日期范围参数
*/
params?: any;
/**
* 日期范围参数
*/
params?: any;
}