Browse Source

获取配置图片接口修改

feature/syp_points
songyunpeng 5 years ago
parent
commit
f54c78aa8f
  1. 5
      esua-epdc/epdc-module/epdc-api/epdc-api-client/src/main/java/com/elink/esua/epdc/dto/result/EpdcImgConfigResultDTO.java
  2. 3
      esua-epdc/epdc-module/epdc-api/epdc-api-server/src/main/resources/mapper/ImgConfigDao.xml

5
esua-epdc/epdc-module/epdc-api/epdc-api-client/src/main/java/com/elink/esua/epdc/dto/result/EpdcImgConfigResultDTO.java

@ -19,4 +19,9 @@ public class EpdcImgConfigResultDTO implements Serializable {
* 图片地址 * 图片地址
*/ */
private String imgUrl; private String imgUrl;
/**
* 图片类型
*/
private String imgType;
} }

3
esua-epdc/epdc-module/epdc-api/epdc-api-server/src/main/resources/mapper/ImgConfigDao.xml

@ -34,7 +34,8 @@
<select id="selectListImgConfigByImgType" resultType="com.elink.esua.epdc.dto.result.EpdcImgConfigResultDTO"> <select id="selectListImgConfigByImgType" resultType="com.elink.esua.epdc.dto.result.EpdcImgConfigResultDTO">
SELECT SELECT
IMG_URL imgUrl IMG_URL imgUrl,
IMG_TYPE imgType
FROM FROM
`epdc_img_config` `epdc_img_config`
WHERE DEL_FLAG = 0 WHERE DEL_FLAG = 0

Loading…
Cancel
Save