Browse Source

【红色代办】1.修改:服务分类列表接口增加图标地址

master
wxz 2 years ago
parent
commit
ebd9d12f9a
  1. 5
      epmet-module/epmet-heart/epmet-heart-client/src/main/java/com/epmet/dto/result/agentservice/LingShanAgentServiceCategoryResultDTO.java
  2. 5
      epmet-module/epmet-heart/epmet-heart-server/src/main/java/com/epmet/entity/LingshanAgentServiceCategoryEntity.java
  3. 1
      epmet-module/epmet-heart/epmet-heart-server/src/main/resources/mapper/LingshanAgentServiceCategoryDao.xml

5
epmet-module/epmet-heart/epmet-heart-client/src/main/java/com/epmet/dto/result/agentservice/LingShanAgentServiceCategoryResultDTO.java

@ -20,4 +20,9 @@ public class LingShanAgentServiceCategoryResultDTO {
*/ */
private String description; private String description;
/**
* 图标
*/
private String iconUrl;
} }

5
epmet-module/epmet-heart/epmet-heart-server/src/main/java/com/epmet/entity/LingshanAgentServiceCategoryEntity.java

@ -36,4 +36,9 @@ public class LingshanAgentServiceCategoryEntity extends BaseEpmetEntity {
*/ */
private String description; private String description;
/**
* 图标
*/
private String iconUrl;
} }

1
epmet-module/epmet-heart/epmet-heart-server/src/main/resources/mapper/LingshanAgentServiceCategoryDao.xml

@ -8,6 +8,7 @@
<result property="customerId" column="CUSTOMER_ID"/> <result property="customerId" column="CUSTOMER_ID"/>
<result property="categoryName" column="CATEGORY_NAME"/> <result property="categoryName" column="CATEGORY_NAME"/>
<result property="description" column="DESCRIPTION"/> <result property="description" column="DESCRIPTION"/>
<result property="iconUrl" column="ICON_URL"/>
<result property="revision" column="REVISION"/> <result property="revision" column="REVISION"/>
<result property="delFlag" column="DEL_FLAG"/> <result property="delFlag" column="DEL_FLAG"/>
<result property="createdBy" column="CREATED_BY"/> <result property="createdBy" column="CREATED_BY"/>

Loading…
Cancel
Save