3 changed files with 82 additions and 0 deletions
@ -0,0 +1,19 @@ |
|||||
|
package com.elink.esua.epdc.dto; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @program: epdc-cloud-admin-yushan |
||||
|
* @description: |
||||
|
* @author: wangtong |
||||
|
* @create: 2021-09-14 16:39 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class AppDeptInfoResultDTO implements Serializable { |
||||
|
|
||||
|
private String deptInfo; |
||||
|
|
||||
|
private String deptName; |
||||
|
} |
@ -0,0 +1,30 @@ |
|||||
|
package com.elink.esua.epdc.dto; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @program: epdc-cloud-admin-yushan |
||||
|
* @description: |
||||
|
* @author: wangtong |
||||
|
* @create: 2021-09-14 16:25 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class AppMemberListFromDTO implements Serializable { |
||||
|
|
||||
|
/** |
||||
|
* 页码 |
||||
|
*/ |
||||
|
private Integer pageIndex; |
||||
|
|
||||
|
/** |
||||
|
* 页容量 |
||||
|
*/ |
||||
|
private Integer pageSize; |
||||
|
|
||||
|
|
||||
|
|
||||
|
private Long deptId; |
||||
|
|
||||
|
} |
@ -0,0 +1,33 @@ |
|||||
|
package com.elink.esua.epdc.dto; |
||||
|
|
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
/** |
||||
|
* @program: epdc-cloud-admin-yushan |
||||
|
* @description: |
||||
|
* @author: wangtong |
||||
|
* @create: 2021-09-14 16:51 |
||||
|
**/ |
||||
|
@Data |
||||
|
public class AppMemberListResultDTO implements Serializable { |
||||
|
|
||||
|
private String id; |
||||
|
|
||||
|
private String name; |
||||
|
|
||||
|
private String imgUrl; |
||||
|
|
||||
|
private String partyFlag; |
||||
|
|
||||
|
private String motto; |
||||
|
|
||||
|
private String duty; |
||||
|
|
||||
|
private String territory; |
||||
|
|
||||
|
private String mobile; |
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue