Advertisement
tezuka777

Group

Jul 15th, 2016
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.47 KB | None | 0 0
  1. //Bean for group that employee belongs to, takes in group ID and employee ID
  2. private int id;
  3. private int employeeId;
  4. private int groupId;
  5. //getters and setters
  6.  
  7.     //Group class
  8.     private int id;
  9.     private String title;
  10.     private int parentId; //for self reference
  11.     private String dna;
  12.  
  13.     private Date createdAt;
  14.     private Date updateDAt;
  15.     private int owner;
  16.  
  17.     private String type;
  18.  
  19.     private String status;
  20.  
  21.     private List<RawGroup> children;
  22.     //getters and setters
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement