Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 3.44 KB | None | 0 0
  1. package com.ecp.dto;
  2.  
  3. // Generated 22 mai 2018 11:21:12 by Hibernate Tools 4.0.0
  4.  
  5. import java.math.BigDecimal;
  6. import java.util.HashSet;
  7. import java.util.Set;
  8.  
  9. /**
  10.  * MenuTree generated by hbm2java
  11.  */
  12. public class MenuTree implements java.io.Serializable {
  13.  
  14.     private long menuId;
  15.     private String menuName;
  16.     private String definition;
  17.     private Long parentMenuId;
  18.     private String menuType;
  19.     private Short displaySeq;
  20.     private BigDecimal indicMenu;
  21.     private String utilTrac;
  22.     private String pageTrac;
  23.     private String taskflow;
  24.     private Byte numSerie;
  25.     private Set<ProfilMenuTree> profilMenuTrees = new HashSet<ProfilMenuTree>(0);
  26.     private Set<UsrMenTree> usrMenTrees = new HashSet<UsrMenTree>(0);
  27.  
  28.     public MenuTree() {
  29.     }
  30.  
  31.     public MenuTree(long menuId) {
  32.         this.menuId = menuId;
  33.     }
  34.  
  35.     public MenuTree(long menuId, String menuName, String definition,
  36.             Long parentMenuId, String menuType, Short displaySeq,
  37.             BigDecimal indicMenu, String utilTrac, String pageTrac,
  38.             String taskflow, Byte numSerie,
  39.             Set<ProfilMenuTree> profilMenuTrees, Set<UsrMenTree> usrMenTrees) {
  40.         this.menuId = menuId;
  41.         this.menuName = menuName;
  42.         this.definition = definition;
  43.         this.parentMenuId = parentMenuId;
  44.         this.menuType = menuType;
  45.         this.displaySeq = displaySeq;
  46.         this.indicMenu = indicMenu;
  47.         this.utilTrac = utilTrac;
  48.         this.pageTrac = pageTrac;
  49.         this.taskflow = taskflow;
  50.         this.numSerie = numSerie;
  51.         this.profilMenuTrees = profilMenuTrees;
  52.         this.usrMenTrees = usrMenTrees;
  53.     }
  54.  
  55.     public long getMenuId() {
  56.         return this.menuId;
  57.     }
  58.  
  59.     public void setMenuId(long menuId) {
  60.         this.menuId = menuId;
  61.     }
  62.  
  63.     public String getMenuName() {
  64.         return this.menuName;
  65.     }
  66.  
  67.     public void setMenuName(String menuName) {
  68.         this.menuName = menuName;
  69.     }
  70.  
  71.     public String getDefinition() {
  72.         return this.definition;
  73.     }
  74.  
  75.     public void setDefinition(String definition) {
  76.         this.definition = definition;
  77.     }
  78.  
  79.     public Long getParentMenuId() {
  80.         return this.parentMenuId;
  81.     }
  82.  
  83.     public void setParentMenuId(Long parentMenuId) {
  84.         this.parentMenuId = parentMenuId;
  85.     }
  86.  
  87.     public String getMenuType() {
  88.         return this.menuType;
  89.     }
  90.  
  91.     public void setMenuType(String menuType) {
  92.         this.menuType = menuType;
  93.     }
  94.  
  95.     public Short getDisplaySeq() {
  96.         return this.displaySeq;
  97.     }
  98.  
  99.     public void setDisplaySeq(Short displaySeq) {
  100.         this.displaySeq = displaySeq;
  101.     }
  102.  
  103.     public BigDecimal getIndicMenu() {
  104.         return this.indicMenu;
  105.     }
  106.  
  107.     public void setIndicMenu(BigDecimal indicMenu) {
  108.         this.indicMenu = indicMenu;
  109.     }
  110.  
  111.     public String getUtilTrac() {
  112.         return this.utilTrac;
  113.     }
  114.  
  115.     public void setUtilTrac(String utilTrac) {
  116.         this.utilTrac = utilTrac;
  117.     }
  118.  
  119.     public String getPageTrac() {
  120.         return this.pageTrac;
  121.     }
  122.  
  123.     public void setPageTrac(String pageTrac) {
  124.         this.pageTrac = pageTrac;
  125.     }
  126.  
  127.     public String getTaskflow() {
  128.         return this.taskflow;
  129.     }
  130.  
  131.     public void setTaskflow(String taskflow) {
  132.         this.taskflow = taskflow;
  133.     }
  134.  
  135.     public Byte getNumSerie() {
  136.         return this.numSerie;
  137.     }
  138.  
  139.     public void setNumSerie(Byte numSerie) {
  140.         this.numSerie = numSerie;
  141.     }
  142.  
  143.     public Set<ProfilMenuTree> getProfilMenuTrees() {
  144.         return this.profilMenuTrees;
  145.     }
  146.  
  147.     public void setProfilMenuTrees(Set<ProfilMenuTree> profilMenuTrees) {
  148.         this.profilMenuTrees = profilMenuTrees;
  149.     }
  150.  
  151.     public Set<UsrMenTree> getUsrMenTrees() {
  152.         return this.usrMenTrees;
  153.     }
  154.  
  155.     public void setUsrMenTrees(Set<UsrMenTree> usrMenTrees) {
  156.         this.usrMenTrees = usrMenTrees;
  157.     }
  158.  
  159. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement