[fix] 优化外部合同管理

This commit is contained in:
wyw
2024-08-15 15:28:19 +08:00
parent 38b8336631
commit 4ee64cce49
14 changed files with 100 additions and 210 deletions

View File

@ -2,6 +2,8 @@ package cn.iocoder.yudao.module.pms.api.projectschedule.dto;
import lombok.Data;
import java.time.LocalDateTime;
/**
* @author wyw
* @description
@ -15,4 +17,9 @@ public class ProjectScheduleDetailDTO {
*/
private String projectManager;
/**
* 外部合同商议提示
*/
private LocalDateTime exReminderTime;
}

View File

@ -33,4 +33,10 @@ public class ProjectTrackingDetailDTO {
*/
private BigDecimal expectedContractAmount;
/**
* 建设方
*/
private String constructionSide;
}

View File

@ -75,7 +75,7 @@ public class ProjectScheduleDO extends BaseDO {
/**
* 外部合同商议时间
*/
private LocalDateTime contractNegotiationTime;
private LocalDateTime exReminderTime;
/**
* 已完成百分比
*/

View File

@ -3,6 +3,8 @@ package cn.iocoder.yudao.module.pms.dal.dataobject.projectschedule;
import cn.iocoder.yudao.module.pms.dal.dataobject.project.ProjectDO;
import lombok.Data;
import java.time.LocalDateTime;
/**
* @author wyw
@ -17,4 +19,8 @@ public class ProjectScheduleDetailDO extends ProjectDO {
*/
private String projectManager;
/**
* 外部合同商议时间
*/
private LocalDateTime exReminderTime;
}

View File

@ -36,4 +36,9 @@ public class ProjectTrackingDetailDO extends ProjectDO {
*/
private BigDecimal expectedContractAmount;
/**
* 建设方
*/
private String constructionSide;
}