enterprisebusinessmodel.java

来自「一套完整的工商12315的源程序jsp部分在12315里,后台JAVA部分在gs」· Java 代码 · 共 124 行

JAVA
124
字号
package com.gs.component.enterprise.model;

/**
 * <p>Title:外网页面定义model </p>
 * <p>Description: 外网页面定义model</p>
 * <p>Copyright: Copyright (c) 2003</p>
 * <p>Company:censoft </p>
 * @author not attributable
 * @version 1.0
 */
public class EnterpriseBusinessModel implements java.io.Serializable{
    private String bid;
    private String content;
    private String sub;
    private String page;
    private String type;
    private String flag;
    //add ( hgw 2004-03-09 17:35)
    //页面类型 null,"",0 -->普通页面; 1-->变更等地方当需要根据条件控制是否显示
    private String pageType;
    //End add (hgw 2004-03-09 17:35)

    public EnterpriseBusinessModel(){}

    /**
     * <p>Descript:</p>
     * @param bid        业务号同BID
     * @param content    页面中文说明
     * @param sub        子表
     * @param page       页面号
     * @param type       类型(暂未知)
     * @param flag       操作类型(查看/填写等)
     */
    public EnterpriseBusinessModel(String bid,String content,String sub,
                                   String page,String type,String flag){
        this.bid = bid;
        this.content = content;
        this.sub = sub;
        this.page = page;
        this.type = type;
        this.flag = flag;
    }

    //add ( hgw 2004-03-09 17:35)
    /**
     * <p>Descript:</p>
     * @param bid        业务号同BID
     * @param content    页面中文说明
     * @param sub        子表
     * @param page       页面号
     * @param type       类型(暂未知)
     * @param flag       操作类型(查看/填写等)
     * @param pageType   null/""/0 -->普通页面;1-->变更等需要控制显示的页面
     */
    public EnterpriseBusinessModel(String bid,String content,String sub,
                                   String page,String type,String flag,
                                   String pageType){
        this.bid = bid;
        this.content = content;
        this.sub = sub;
        this.page = page;
        this.type = type;
        this.flag = flag;
        this.pageType = pageType;
    }
    //End add
    public void setBid(String bid){
        this.bid = bid;
    }

    public String getBid(){
        return bid;
    }

    public void setContent(String content){
        this.content = content;
    }

    public String getContent(){
        return content;
    }

    public void setSub(String sub){
        this.sub = sub;
    }

    public String getSub(){
        return sub;
    }

    public void setPage(String page){
        this.page = page;
    }

    public String getPage(){
        return page;
    }

    public void setType(String type){
        this.type = type;
    }

    public String getType(){
        return type;
    }

    public void setFlag(String flag){
        this.flag = flag;
    }

    public String getFlag(){
        return flag;
    }
    //add ( hgw 2004-03-09 17:35)
    public void setPageType(String pageType){
        this.pageType = pageType;
    }

    public String getPageType(){
        return pageType;
    }
    //End add ( hgw 2004-03-09 17:35)
}

⌨️ 快捷键说明

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