Browse Source

事件详情

dev
yinzuomei 3 years ago
parent
commit
3338d6544c
  1. 6
      epmet-module/gov-project/gov-project-client/src/main/java/com/epmet/dto/result/IcEventListResultDTO.java
  2. 9
      epmet-module/gov-project/gov-project-server/src/main/resources/mapper/IcEventDao.xml

6
epmet-module/gov-project/gov-project-client/src/main/java/com/epmet/dto/result/IcEventListResultDTO.java

@ -117,15 +117,15 @@ public class IcEventListResultDTO implements Serializable {
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8")
private Date closeCaseTime; private Date closeCaseTime;
/** /**
* 0:已回复 1:已转项目 1:已转需求 * 0:已回复 1:已转项目 2:已转需求3:转议题
*/ */
private String operationType; private String operationType;
/** /**
* 0:已回复 1:已转项目 1:已转需求 * 0:已回复 1:已转项目 2:已转需求3:转议题
*/ */
private String operationTypeName; private String operationTypeName;
/** /**
* 项目需求ID * 项目需求ID议题id
*/ */
private String operationId; private String operationId;
/** /**

9
epmet-module/gov-project/gov-project-server/src/main/resources/mapper/IcEventDao.xml

@ -169,7 +169,14 @@
ie.satisfaction, ie.satisfaction,
IF(ie.satisfaction = 'bad','不满意',IF (ie.satisfaction = 'good','基本满意',IF (ie.satisfaction = 'perfect','非常满意',''))) satisfactionName, IF(ie.satisfaction = 'bad','不满意',IF (ie.satisfaction = 'good','基本满意',IF (ie.satisfaction = 'perfect','非常满意',''))) satisfactionName,
ie.operation_type, ie.operation_type,
IF(ie.operation_type = '0','已回复',IF (ie.operation_type = '1','已转项目',IF (ie.operation_type = '2','已转需求',''))) operationTypeName, (
case when ie.operation_type = '0' then '已回复'
when ie.operation_type = '1' then '已转项目'
when ie.operation_type = '2' then '已转需求'
when ie.operation_type = '3' then '已转议题'
else ''
end
)as operationTypeName
ie.operation_id, ie.operation_id,
ie.read_flag, ie.read_flag,
ie.red_dot, ie.red_dot,

Loading…
Cancel
Save