4 changed files with 40 additions and 16 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; |
||||
|
|
||||
|
} |
Loading…
Reference in new issue