Browse Source
# Conflicts: # epmet-module/gov-issue/gov-issue-client/src/main/java/com/epmet/feign/GovIssueOpenFeignClient.java # epmet-module/gov-issue/gov-issue-client/src/main/java/com/epmet/feign/fallback/GovIssueOpenFeignClientFallBack.javadev_shibei_match
11 changed files with 182 additions and 9 deletions
@ -0,0 +1,45 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import com.epmet.resi.group.dto.group.form.ApplicationListFormDTO; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotNull; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* 查询issue_application通用入参DTO |
||||
|
* |
||||
|
* @author yinzuomei@elink-cn.com |
||||
|
* @date 2020/11/18 16:22 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class IssueAppQueryFormDTO implements Serializable { |
||||
|
public interface ApplicationList{} |
||||
|
|
||||
|
/** |
||||
|
* 网格id |
||||
|
*/ |
||||
|
private String gridId; |
||||
|
|
||||
|
/** |
||||
|
* 小组id |
||||
|
*/ |
||||
|
private String groupId; |
||||
|
|
||||
|
/** |
||||
|
* 审核状态:under_auditing:待审核;approved:通过;rejected:驳回 |
||||
|
*/ |
||||
|
private String applyStatus; |
||||
|
|
||||
|
/** |
||||
|
* 页码 |
||||
|
*/ |
||||
|
@NotNull(message = "页码不能为空",groups = {ApplicationListFormDTO.ApplicationList.class}) |
||||
|
private Integer pageNo; |
||||
|
|
||||
|
/** |
||||
|
* 每页数量 |
||||
|
*/ |
||||
|
@NotNull(message = "每页数量不能为空",groups = {ApplicationListFormDTO.ApplicationList.class}) |
||||
|
private Integer pageSize; |
||||
|
} |
Loading…
Reference in new issue