|
@@ -2,7 +2,6 @@ package org.jeecg.modules.prowork.entity;
|
|
|
|
|
|
import java.io.Serializable;
|
|
|
import java.util.Date;
|
|
|
-
|
|
|
import com.baomidou.mybatisplus.annotation.IdType;
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
@@ -12,7 +11,6 @@ import lombok.Data;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import org.jeecg.common.dto.prowork.ProWorkLogicContentAddReqDTO;
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
-import org.jeecgframework.poi.excel.annotation.Excel;
|
|
|
|
|
|
|
|
|
* @Description: 日志详情(实施,开发,服务)
|
|
@@ -28,6 +26,8 @@ public class ProWorkLogicContent implements Serializable {
|
|
|
@ApiModelProperty("id")
|
|
|
@TableId(type = IdType.UUID)
|
|
|
private String id;
|
|
|
+ @ApiModelProperty("项目档案计划id")
|
|
|
+ private String proPlanId;
|
|
|
@ApiModelProperty("日志id")
|
|
|
private String logicId;
|
|
|
@ApiModelProperty("项目档案id")
|
|
@@ -60,6 +60,7 @@ public class ProWorkLogicContent implements Serializable {
|
|
|
|
|
|
public ProWorkLogicContent(ProWorkLogicContentAddReqDTO detail) {
|
|
|
this.logicId = detail.getLogicId();
|
|
|
+ this.proPlanId = detail.getProPlanId();
|
|
|
this.proArchivesId = detail.getProArchivesId();
|
|
|
this.proArchivesMilestone = detail.getProArchivesMilestone();
|
|
|
this.content = detail.getContent();
|