Blame view

src/main/java/com/zteits/oa/api/dto/asraoprelations/AsraOpRelationsDTO.java 966 Bytes
2f6df64b   xiejianpeng   员工管理
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
  package com.zteits.oa.api.dto.asraoprelations;
  
  import com.zteits.oa.api.base.bean.BaiscDTO;
  
  public class AsraOpRelationsDTO  extends BaiscDTO {
  
      /**父级ID*/
      private Long parentId;
  
      /**员工ID*/
      private Long opId;
  
      /**数据状态:1有效,0无效,2:锁定*/
      private Integer dataState;
  
      /**获取父级ID*/
      public Long getParentId() {
          return parentId;
      }
  
      /**设置父级ID*/
      public void setParentId(Long parentId) {
          this.parentId = parentId;
      }
  
      /**获取员工ID*/
      public Long getOpId() {
          return opId;
      }
  
      /**设置员工ID*/
      public void setOpId(Long opId) {
          this.opId = opId;
      }
  
      /**获取数据状态:1有效,0无效,2:锁定*/
      public Integer getDataState() {
          return dataState;
      }
  
      /**设置数据状态:1有效,0无效,2:锁定*/
      public void setDataState(Integer dataState) {
          this.dataState = dataState;
      }
  }