Browse Source

代码提交 榆山图片配置及小程序首页电话代码开发 api

master
zhangfh 4 years ago
parent
commit
8bf72b0b51
  1. 99
      epdc-cloud-api-client/src/main/java/com/elink/esua/epdc/dto/ImgConfigDTO.java
  2. 41
      epdc-cloud-api-client/src/main/java/com/elink/esua/epdc/dto/form/EpdcAppImgTypeListFormDTO.java
  3. 41
      epdc-cloud-api-client/src/main/java/com/elink/esua/epdc/dto/result/EpdcImgConfigResultDTO.java

99
epdc-cloud-api-client/src/main/java/com/elink/esua/epdc/dto/ImgConfigDTO.java

@ -0,0 +1,99 @@
/**
* Copyright 2018 人人开源 https://www.renren.io
* <p>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* <p>
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <p>
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.elink.esua.epdc.dto;
import lombok.Data;
import java.io.Serializable;
import java.util.Date;
/**
* 图片配置表
*
* @author zhangyong
* @since v1.0.0 2020-05-27
*/
@Data
public class ImgConfigDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
private String id;
/**
* 类型(0-志愿者咨询热线)
*/
private String imgType;
/**
* 图片地址
*/
private String imgUrl;
/**
* 排序
*/
private Integer sort;
/**
* 启用标识 0未启用 1启用
*/
private String enableFlag;
/**
* 乐观锁
*/
private Integer revision;
/**
* 删除标识 0未删除 1删除
*/
private String delFlag;
/**
* 创建人
*/
private String createdBy;
/**
* 创建时间
*/
private Date createdTime;
/**
* 更新人
*/
private String updatedBy;
/**
* 更新时间
*/
private Date updatedTime;
/**
* 图片地址
*/
private String imgCode;
/**
* 备注
*/
private String remark;
}

41
epdc-cloud-api-client/src/main/java/com/elink/esua/epdc/dto/form/EpdcAppImgTypeListFormDTO.java

@ -0,0 +1,41 @@
/**
* Copyright 2018 人人开源 https://www.renren.io
* <p>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* <p>
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* <p>
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.elink.esua.epdc.dto.form;
import lombok.Data;
import java.io.Serializable;
import java.util.List;
/**
* 取消报名参数
*
* @author wanggongfeng
* @since v1.0.0 2019-12-17
*/
@Data
public class EpdcAppImgTypeListFormDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 图片类型列表
*/
private List<String> imageTypes;
}

41
epdc-cloud-api-client/src/main/java/com/elink/esua/epdc/dto/result/EpdcImgConfigResultDTO.java

@ -0,0 +1,41 @@
package com.elink.esua.epdc.dto.result;
import lombok.Data;
import java.io.Serializable;
/**
* APP 获取咨询热线图片 返回参数
*
* @author zhangyong
* @date 2020/05/27 18:30
*/
@Data
public class EpdcImgConfigResultDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 图片地址
*/
private String imgUrl;
/**
* 图片类型
*/
private String imgType;
/**
* 图片地址
*/
private String imgCode;
/**
* 备注
*/
private String remark;
/**
* 排序
*/
private Integer sort;
}
Loading…
Cancel
Save