Browse Source

Merge remote-tracking branch 'origin/master'

master
Jackwang 4 years ago
parent
commit
ca91cd68cd
  1. 86
      epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/suggestion/CustomImgDTO.java
  2. 91
      epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/suggestion/SuggestionFeedbackDTO.java
  3. 151
      epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/suggestion/SuggestionMakeDTO.java
  4. 96
      epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/suggestion/SuggestionTypeDTO.java

86
epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/suggestion/CustomImgDTO.java

@ -0,0 +1,86 @@
/**
* 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.suggestion;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
/**
* customer 库共用图片表
*
* @author qu qu@elink-cn.com
* @since v1.0.0 2021-09-14
*/
@Data
public class CustomImgDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* ID
*/
private String id;
/**
* 引用ID
*/
private String referenceId;
/**
* 图片地址
*/
private String imgUrl;
/**
* 图片类型
*/
private String imgType;
/**
* 删除标识 0未删除1删除
*/
private Integer delFlag;
/**
* 乐观锁
*/
private Integer revision;
/**
* 创建人
*/
private String createdBy;
/**
* 创建时间
*/
private Date createdTime;
/**
* 更新人
*/
private String updatedBy;
/**
* 更新时间
*/
private Date updatedTime;
}

91
epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/suggestion/SuggestionFeedbackDTO.java

@ -0,0 +1,91 @@
/**
* 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.suggestion;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
/**
* 建议反馈表
*
* @author qu qu@elink-cn.com
* @since v1.0.0 2021-09-14
*/
@Data
public class SuggestionFeedbackDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
private String id;
/**
* 建议反馈内容
*/
private String feedbackContent;
/**
* 提建议表主键 关联epdc_suggestion_make
*/
private String suggestionId;
/**
* 反馈部门ID
*/
private Long deptId;
/**
* 反馈部门名称
*/
private String deptName;
/**
* 删除标识 0-1-
*/
private String delFlag;
/**
* 乐观锁
*/
private Integer revision;
/**
* 创建人
*/
private String createdBy;
/**
* 创建时间
*/
private Date createdTime;
/**
* 更新人
*/
private String updatedBy;
/**
* 更新时间
*/
private Date updatedTime;
}

151
epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/suggestion/SuggestionMakeDTO.java

@ -0,0 +1,151 @@
/**
* 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.suggestion;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
/**
* 我有建议要提
*
* @author qu qu@elink-cn.com
* @since v1.0.0 2021-09-14
*/
@Data
public class SuggestionMakeDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
private String id;
/**
* 建议类别 关联epdc_suggestion_type
*/
private String suggestionTypeId;
/**
* 建议标题
*/
private String suggestionTitle;
/**
* 建议内容
*/
private String suggestionContent;
/**
* 建议图片 关联epdc_custom_img 最多三张逗号分隔
*/
private String suggestionPic;
/**
* 提意见的用户ID
*/
private String userId;
/**
* 用户昵称
*/
private String nickname;
/**
* 用户头像
*/
private String faceImg;
/**
* 手机号
*/
private String mobile;
/**
* 是否是党员(0-1-)
*/
private String partyFlag;
/**
* 居住网格id
*/
private Long deptId;
/**
* 居住网格名称
*/
private String deptName;
/**
* 父所有部门id
*/
private String parentDeptIds;
/**
* 父所有部门名称
*/
private String parentDeptNames;
/**
* 所有部门ID
*/
private String allDeptIds;
/**
* 所有部门名称
*/
private String allDeptNames;
/**
* 是否反馈 0-1-
*/
private String isFeedback;
/**
* 删除标识 0-1-
*/
private String delFlag;
/**
* 乐观锁
*/
private Integer revision;
/**
* 创建人
*/
private String createdBy;
/**
* 创建时间
*/
private Date createdTime;
/**
* 更新人
*/
private String updatedBy;
/**
* 更新时间
*/
private Date updatedTime;
}

96
epdc-cloud-custom-client/src/main/java/com/elink/esua/epdc/dto/suggestion/SuggestionTypeDTO.java

@ -0,0 +1,96 @@
/**
* 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.suggestion;
import java.io.Serializable;
import java.util.Date;
import lombok.Data;
/**
* 建议类别表
*
* @author qu qu@elink-cn.com
* @since v1.0.0 2021-09-14
*/
@Data
public class SuggestionTypeDTO implements Serializable {
private static final long serialVersionUID = 1L;
/**
* 主键
*/
private String id;
/**
* 建议类别名称
*/
private String suggestionName;
/**
* 上级ID
*/
private String pid;
/**
* 所有上级ID用逗号分开
*/
private String pids;
/**
* 排序
*/
private Integer sort;
/**
* 启用标识0-1-
*/
private String enableFlag;
/**
* 删除标识 0-1-
*/
private String delFlag;
/**
* 乐观锁
*/
private Integer revision;
/**
* 创建人
*/
private String createdBy;
/**
* 创建时间
*/
private Date createdTime;
/**
* 更新人
*/
private String updatedBy;
/**
* 更新时间
*/
private Date updatedTime;
}
Loading…
Cancel
Save