weburl.java

来自「java实现安全系统的开源代码 java实现安全系统的开源代码」· Java 代码 · 共 79 行

JAVA
79
字号
package com.starit.model;

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


/**
 * Weburl generated by MyEclipse - Hibernate Tools
 */

public class Weburl  implements java.io.Serializable {


    // Fields    

     private Integer id;
     private String url;
     private String res;
     private Set weburlRole = new HashSet(0);


    // Constructors

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

    
    /** full constructor */
    public Weburl(String url, String res, Set weburlRole) {
        this.url = url;
        this.res = res;
        this.weburlRole = weburlRole;
    }

   
    // Property accessors

    public Integer getId() {
        return this.id;
    }
    
    public void setId(Integer id) {
        this.id = id;
    }

    public String getUrl() {
        return this.url;
    }
    
    public void setUrl(String url) {
        this.url = url;
    }

    public String getRes() {
        return this.res;
    }
    
    public void setRes(String res) {
        this.res = res;
    }

    public Set getWeburlRole() {
        return this.weburlRole;
    }
    
    public void setWeburlRole(Set weburlRole) {
        this.weburlRole = weburlRole;
    }
   








}

⌨️ 快捷键说明

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