popedomvo.java

来自「spring+hibernate+struts开发的校务oa系统」· Java 代码 · 共 94 行

JAVA
94
字号
package com.yondor.oa.db.popedom.dao;

import java.util.HashSet;
import java.util.Set;

public class PopedomVO {

    // Fields    

     private Long popedomid;
     private Long parentid;
     private String identifier;
     private String name;
     private String description;
     private Set operators = new HashSet(0);


    // Constructors

    /** default constructor */
    public PopedomVO() {
    }

    
    /** full constructor */
    public PopedomVO(Long parentid, String identifier, String name, String description, Set operators) {
        this.parentid = parentid;
        this.identifier = identifier;
        this.name = name;
        this.description = description;
        this.operators = operators;
    }

   
    // Property accessors

    public Long getPopedomid() {
        return this.popedomid;
    }
    
    public void setPopedomid(Long popedomid) {
        this.popedomid = popedomid;
    }

    public Long getParentid() {
        return this.parentid;
    }
    
    public void setParentid(Long parentid) {
        this.parentid = parentid;
    }

    public String getIdentifier() {
        return this.identifier;
    }
    
    public void setIdentifier(String identifier) {
        this.identifier = identifier;
    }

    public String getName() {
        return this.name;
    }
    
    public void setName(String name) {
        this.name = name;
    }

    public String getDescription() {
        return this.description;
    }
    
    public void setDescription(String description) {
        this.description = description;
    }

    public Set getOperators() {
        return this.operators;
    }
    
    public void setOperators(Set operators) {
        this.operators = operators;
    }
   








}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?