licenceprintsetupmodel.java

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

JAVA
69
字号
package com.gs.pageBuilder.model;

/**
 * <p>Title: </p>
 * <p>Description: </p>
 * <p>Copyright: Copyright (c) 2003</p>
 * <p>Company: </p>
 * @author not attributable
 * @version 1.0
 */

public class LicencePrintSetupModel implements java.io.Serializable{
    public String CODE;//编号
    public String EXPLAIN;//说明
    public String CONTENT;//注释
    public String UNIT;//登记单位
    public String POSITION_LEFT;//左偏移
    public String POSITION_TOP;//上偏移

    public String getCODE(){
        return CODE;
    }

    public void setCODE(String CODE){
        this.CODE = CODE;
    }

    public String getEXPLAIN(){
        return EXPLAIN;
    }

    public void setEXPLAIN(String EXPLAIN){
        this.EXPLAIN = EXPLAIN;
    }

    public String getCONTENT(){
        return CONTENT;
    }

    public void setCONTENT(String CONTENT){
        this.CONTENT = CONTENT;
    }

    public String getUNIT(){
        return UNIT;
    }

    public void setUNIT(String UNIT){
        this.UNIT = UNIT;
    }

    public String getPOSITION_LEFT(){
        return POSITION_LEFT;
    }

    public void setPOSITION_LEFT(String POSITION_LEFT){
        this.POSITION_LEFT = POSITION_LEFT;
    }

    public String getPOSITION_TOP(){
        return POSITION_TOP;
    }

    public void setPOSITION_TOP(String POSITION_TOP){
        this.POSITION_TOP = POSITION_TOP;
    }

}

⌨️ 快捷键说明

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