Browse Source

驳回详情回显,新增返回字段

feature/dangjian
HAHA 4 years ago
parent
commit
e9d8ecd718
  1. 10
      esua-epdc/epdc-module/epdc-events/epdc-events-client/src/main/java/com/elink/esua/epdc/dto/item/result/ItemDetailForPCEndResultDTO.java
  2. 4
      esua-epdc/epdc-module/epdc-events/epdc-events-server/src/main/resources/mapper/item/ItemDao.xml

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

@ -189,4 +189,14 @@ public class ItemDetailForPCEndResultDTO implements Serializable {
*/
private Integer handleCategoryShow;
/**
* 分类编码
*/
private String categoryCode;
/**
* 一级分类编码
*/
private String firstCategoryCode;
}

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

@ -698,6 +698,8 @@
<result property="handlerDeptId" column="HANDLER_DEPT_ID" />
<result property="handlerDept" column="HANDLER_DEPT" />
<result property="closeCheckId" column="CLOSE_CHECK_ID" />
<result property="categoryCode" column="category_code" />
<result property="firstCategoryCode" column="first_category_code" />
<result property="duration" column="DURATION"/>
<collection property="images" ofType="java.lang.String">
<result property="image" column="IMG_URL"/>
@ -717,6 +719,8 @@
item.GRID_ID,
item.HANDLE_PEOPLE_NAME,
item.HANDLE_PEOPLE_MOBILE,
item.category_code,
item.first_category_code,
eve.APPROVE_NUM,
eve.OPPOSE_NUM,
eve.COMMENT_NUM,

Loading…
Cancel
Save