forked from rongchao/epmet-cloud-rizhao
24 changed files with 359 additions and 69 deletions
@ -0,0 +1,24 @@ |
|||
package com.epmet.resi.group.dto.topic.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Description |
|||
* @ClassName ResiTopicCancelHiddenFormDTO |
|||
* @Author wangc |
|||
* @date 2020.04.07 15:10 |
|||
*/ |
|||
@Data |
|||
public class ResiTopicCancelHiddenFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 需要解除屏蔽的话题Id集合 |
|||
* */ |
|||
private List<String> topicIds; |
|||
} |
@ -0,0 +1,65 @@ |
|||
/** |
|||
* 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.epmet.resi.partymember.dto.warmhearted.form; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import javax.validation.constraints.NotBlank; |
|||
import java.io.Serializable; |
|||
|
|||
|
|||
/** |
|||
* 政府端-人工审核热心居民申请-配置入参 |
|||
* @author sun |
|||
*/ |
|||
@Data |
|||
public class ResiWarmheartedAuditFormDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
/** |
|||
* 热心居民申请id |
|||
*/ |
|||
@NotBlank(message = "申请ID不能为空") |
|||
private String resiWarmApplyId; |
|||
|
|||
/** |
|||
* 审核状态(0:取消驳回 1:审核通过) |
|||
*/ |
|||
@NotBlank(message = "审核状态不能为空") |
|||
private String auditStatus; |
|||
|
|||
/** |
|||
* 驳回理由 |
|||
*/ |
|||
@NotBlank(message = "驳回理由不能为空") |
|||
private String refuseReason; |
|||
|
|||
/** |
|||
* 客户Id CUSTOMER.id |
|||
*/ |
|||
@NotBlank(message = "客户ID不能为空") |
|||
private String customerId; |
|||
|
|||
/** |
|||
* 用户Id |
|||
*/ |
|||
@NotBlank(message = "用户ID不能为空") |
|||
private String userId; |
|||
|
|||
} |
Loading…
Reference in new issue