forked from luyan/epmet-cloud-lingshan
11 changed files with 467 additions and 10 deletions
@ -0,0 +1,24 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author zhaoqifeng |
||||
|
* @Date 2021/12/10 15:49 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class PartyMemberListFormDTO implements Serializable { |
||||
|
|
||||
|
private static final long serialVersionUID = -6085134769034337175L; |
||||
|
@NotBlank(message = "组织类型不能为空") |
||||
|
private String orgType; |
||||
|
@NotBlank(message = "组织ID不能为空") |
||||
|
private String orgId; |
||||
|
private String code; |
||||
|
private Integer pageNo = 1; |
||||
|
private Integer pageSize = 20; |
||||
|
} |
@ -0,0 +1,20 @@ |
|||||
|
package com.epmet.dto.form; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import javax.validation.constraints.NotBlank; |
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author zhaoqifeng |
||||
|
* @Date 2021/12/10 15:46 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class PartyMemberStatisticsFormDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 1027174449735636944L; |
||||
|
@NotBlank(message = "组织类型不能为空") |
||||
|
private String orgType; |
||||
|
@NotBlank(message = "组织ID不能为空") |
||||
|
private String orgId; |
||||
|
} |
@ -0,0 +1,19 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author zhaoqifeng |
||||
|
* @Date 2021/12/10 17:05 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class PartyMemberAgeResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = 3421162784157903637L; |
||||
|
private String userId; |
||||
|
private String name; |
||||
|
private String age; |
||||
|
private String mobile; |
||||
|
} |
@ -0,0 +1,19 @@ |
|||||
|
package com.epmet.dto.result; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @Description |
||||
|
* @Author zhaoqifeng |
||||
|
* @Date 2021/12/10 17:07 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class PartyMemberEducationResultDTO implements Serializable { |
||||
|
private static final long serialVersionUID = -5042362121277863249L; |
||||
|
private String userId; |
||||
|
private String name; |
||||
|
private String education; |
||||
|
private String mobile; |
||||
|
} |
Loading…
Reference in new issue