|
@@ -1943,6 +1943,7 @@ public class ProjectListService {
|
|
|
programCancellation.setUpdateById(userDTO.getId());
|
|
|
programCancellation.setUpdateTime(new Date());
|
|
|
programCancellation.setStatus(projectListDto.getStatus());
|
|
|
+ programCancellation.setReason(projectListDto.getReason());
|
|
|
programCancellationMapper.updateById(programCancellation);
|
|
|
canId=projectListDto.getCancellId();
|
|
|
}else {
|
|
@@ -1951,6 +1952,7 @@ public class ProjectListService {
|
|
|
programCancellation.setId(id);
|
|
|
programCancellation.setProjectId(projectListDto.getId());
|
|
|
programCancellation.setStatus(projectListDto.getStatus());
|
|
|
+ programCancellation.setReason(projectListDto.getReason());
|
|
|
programCancellationMapper.insert(programCancellation);
|
|
|
canId=id;
|
|
|
}
|