📄 licenceprintsetupmodel.java
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -