2 changed files with 62 additions and 0 deletions
@ -0,0 +1,29 @@ |
|||
package com.elink.esua.epdc.dto.analysis.pc.screen.result; |
|||
|
|||
import lombok.Data; |
|||
|
|||
import java.io.Serializable; |
|||
|
|||
/** |
|||
* @Author:liuchuang |
|||
* @Date:2021/8/20 20:53 |
|||
*/ |
|||
@Data |
|||
public class EpdcScreenItemDeptDTO implements Serializable { |
|||
private static final long serialVersionUID = 4441119854802904207L; |
|||
|
|||
/** |
|||
* 部门ID |
|||
*/ |
|||
private Long deptId; |
|||
|
|||
/** |
|||
* 部门名称 |
|||
*/ |
|||
private String deptName; |
|||
|
|||
/** |
|||
* 项目处理表ID |
|||
*/ |
|||
private String itemHandleId; |
|||
} |
Loading…
Reference in new issue