24 changed files with 251 additions and 75 deletions
@ -0,0 +1,28 @@ |
|||
package com.epmet.evaluationindex.screen.dto.result; |
|||
|
|||
import lombok.AllArgsConstructor; |
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/10/26 3:36 下午 |
|||
*/ |
|||
@Data |
|||
@AllArgsConstructor |
|||
public class DepartmentNameListResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = -801407836277197080L; |
|||
|
|||
/** |
|||
* 部门名 |
|||
*/ |
|||
private String departmentName; |
|||
/** |
|||
* 工作人员 |
|||
*/ |
|||
private List<String> staffList; |
|||
|
|||
} |
@ -0,0 +1,48 @@ |
|||
package com.epmet.dto.result; |
|||
|
|||
import lombok.Data; |
|||
import lombok.NoArgsConstructor; |
|||
|
|||
import java.io.Serializable; |
|||
import java.util.ArrayList; |
|||
import java.util.List; |
|||
|
|||
/** |
|||
* @Author zxc |
|||
* @DateTime 2020/10/26 9:36 上午 |
|||
*/ |
|||
@Data |
|||
public class ProcessAndCurrentDeptResultDTO implements Serializable { |
|||
|
|||
private static final long serialVersionUID = 2977695657920536933L; |
|||
|
|||
private List<ProcesslistResultDTO> processList; |
|||
|
|||
/** |
|||
* 当前跟进部门 |
|||
*/ |
|||
private List<String> departmentNameList; |
|||
/** |
|||
* 当前跟进部门 |
|||
*/ |
|||
private List<ProjectDetailResultDTO.DepartmentNameListBean> departmentList; |
|||
|
|||
@NoArgsConstructor |
|||
@Data |
|||
public static class DepartmentNameListBean { |
|||
/** |
|||
* 部门名 |
|||
*/ |
|||
private String departmentName; |
|||
/** |
|||
* 工作人员 |
|||
*/ |
|||
private List<String> staffList; |
|||
} |
|||
|
|||
public ProcessAndCurrentDeptResultDTO() { |
|||
this.processList = new ArrayList<>(); |
|||
this.departmentNameList = new ArrayList<>(); |
|||
this.departmentList = new ArrayList<>(); |
|||
} |
|||
} |
Loading…
Reference in new issue