Browse Source

解决情况提交

feature/dangjian
lichao 3 years ago
parent
commit
ff50aff306
  1. 2
      esua-epdc/epdc-module/epdc-events/epdc-events-client/src/main/java/com/elink/esua/epdc/dto/item/result/ItemAppealDetailResultDTO.java
  2. 3
      esua-epdc/epdc-module/epdc-events/epdc-events-client/src/main/java/com/elink/esua/epdc/dto/item/result/ItemAppealPageResultDTO.java
  3. 5
      esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/resources/mapper/item/ItemDao.xml

2
esua-epdc/epdc-module/epdc-events/epdc-events-client/src/main/java/com/elink/esua/epdc/dto/item/result/ItemAppealDetailResultDTO.java

@ -155,4 +155,6 @@ public class ItemAppealDetailResultDTO implements Serializable {
private String[] categoryIds;
private String solutionInfoName;
}

3
esua-epdc/epdc-module/epdc-events/epdc-events-client/src/main/java/com/elink/esua/epdc/dto/item/result/ItemAppealPageResultDTO.java

@ -159,4 +159,7 @@ public class ItemAppealPageResultDTO implements Serializable {
*/
private String uniformSocialCreditCode;
private String solutionInfoName;
private String solutionInfo;
}

5
esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/resources/mapper/item/ItemDao.xml

@ -2109,6 +2109,8 @@
SELECT i.id,
i.NICK_NAME,
i.MOBILE,
i.SOLUTION_INFO,
if(i.SOLUTION_INFO=01,'解决',if(i.SOLUTION_INFO=02,'基本解决',if(i.SOLUTION_INFO=03,'未解决',''))) as solutionInfoName,
i.CREATED_TIME,
case when (getworkminute(i.CREATED_TIME,now()) / 60 > 8) then '1'
when (getworkminute(i.CREATED_TIME,now()) / 60 > 6 and getworkminute(i.CREATED_TIME,now()) / 60 <=8) then '2'
@ -2392,6 +2394,7 @@
<result property="evaluationContent" column="EVALUATION_CONTENT"/>
<result property="evaluationTime" column="EVALUATION_TIME"/>
<result property="categoryFullCode" column="CATEGORY_FULL_CODE"/>
<result property="solutionInfoName" column="solutionInfoName"/>
<collection property="images" ofType="java.lang.String">
<result property="image" column="IMG_URL"/>
</collection>
@ -2400,6 +2403,8 @@
resultMap="appealDetailMap">
SELECT
item.ID,
item.SOLUTION_INFO,
if(item.SOLUTION_INFO=01,'解决',if(item.SOLUTION_INFO=02,'基本解决',if(item.SOLUTION_INFO=03,'未解决',''))) as solutionInfoName,
item.NICK_NAME,
item.DISTRIBUTE_TIME,
item.MOBILE,

Loading…
Cancel
Save