|
|
|
@ -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, |
|
|
|
|