Commit 5c383711 authored by “xuhd”'s avatar “xuhd”

问题62、新增:评定结论公示送达日期(评定送达后才能机构才能录入人员信息)

评定报告录入: 增加公示开始日期 ,公示完成日期 (待公示,公示中,公示完成)
parent 128e24e9
...@@ -272,8 +272,8 @@ public class TaskController { ...@@ -272,8 +272,8 @@ public class TaskController {
} }
newChAprReport.setPublicityStartTime(updateChAprReport.getPublicityStartTime()); newChAprReport.setPublicityStartTime(updateChAprReport.getPublicityStartTime());
newChAprReport.setPublicityEndTime(updateChAprReport.getPublicityEndTime()); newChAprReport.setPublicityEndTime(updateChAprReport.getPublicityEndTime());
newChAprReport.setLcd(new Date());//更新时间 newChAprReport.setPublicityLcd(new Date());//更新时间
newChAprReport.setLcu(userId);//更新人 newChAprReport.setPublicityLcu(userId);//更新人
newChAprReport.setReportId(updateChAprReport.getReportId()); newChAprReport.setReportId(updateChAprReport.getReportId());
aprReportMapper.updateById(newChAprReport); aprReportMapper.updateById(newChAprReport);
return Result.success(); return Result.success();
......
...@@ -7,6 +7,8 @@ import com.baomidou.mybatisplus.annotation.TableName; ...@@ -7,6 +7,8 @@ import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data; import lombok.Data;
import org.springframework.format.annotation.DateTimeFormat; import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
@Data @Data
@TableName("CH_APR_REPORT") @TableName("CH_APR_REPORT")
@KeySequence(value = "SEQ_CH_APR_REPORT") @KeySequence(value = "SEQ_CH_APR_REPORT")
...@@ -49,4 +51,6 @@ public class ChAprReport { ...@@ -49,4 +51,6 @@ public class ChAprReport {
private Integer lcu; private Integer lcu;
private java.util.Date publicityTime; private java.util.Date publicityTime;
private Integer publicityUser; private Integer publicityUser;
private Date publicityLcd;
private Integer publicityLcu;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment