|
@@ -7,7 +7,6 @@ import lombok.NoArgsConstructor;
|
|
|
/**
|
|
|
* 标签打印文字类
|
|
|
*/
|
|
|
-@Data
|
|
|
public class PTXLabelText {
|
|
|
/** 文字类型 0:英文,1:中文*/
|
|
|
private Integer textType;
|
|
@@ -15,16 +14,16 @@ public class PTXLabelText {
|
|
|
/** 标签间距 */
|
|
|
private Integer spaceBetween;
|
|
|
|
|
|
- /** x坐标 10 = 4毫米 */
|
|
|
+ /** x坐标 10 = 3 ~ 4毫米 */
|
|
|
private Integer x;
|
|
|
|
|
|
/** y坐标 最小为 标签间距 / 2 - 5 */
|
|
|
private Integer y;
|
|
|
|
|
|
- /** x轴垂直扩展 10 = 3毫米 */
|
|
|
+ /** x轴垂直扩展 字符宽度 10 = 3毫米 */
|
|
|
private Integer xLineHeight;
|
|
|
|
|
|
- /** y轴垂直扩展 10 = 3毫米 */
|
|
|
+ /** y轴垂直扩展 字符高度 10 = 3毫米 */
|
|
|
private Integer yLineHeight;
|
|
|
|
|
|
/** 打印的数据 */
|
|
@@ -56,4 +55,68 @@ public class PTXLabelText {
|
|
|
this.printData = printData;
|
|
|
this.tffFileName = tffFileName;
|
|
|
}
|
|
|
+
|
|
|
+ public Integer getTextType() {
|
|
|
+ return textType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTextType(Integer textType) {
|
|
|
+ this.textType = textType;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getSpaceBetween() {
|
|
|
+ return spaceBetween;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setSpaceBetween(Integer spaceBetween) {
|
|
|
+ this.spaceBetween = spaceBetween;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getX() {
|
|
|
+ return x;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setX(Integer x) {
|
|
|
+ this.x = x;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getY() {
|
|
|
+ return y;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setY(Integer y) {
|
|
|
+ this.y = y;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getxLineHeight() {
|
|
|
+ return xLineHeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setxLineHeight(Integer xLineHeight) {
|
|
|
+ this.xLineHeight = xLineHeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Integer getyLineHeight() {
|
|
|
+ return yLineHeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setyLineHeight(Integer yLineHeight) {
|
|
|
+ this.yLineHeight = yLineHeight;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getPrintData() {
|
|
|
+ return printData;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setPrintData(String printData) {
|
|
|
+ this.printData = printData;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getTffFileName() {
|
|
|
+ return tffFileName;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setTffFileName(String tffFileName) {
|
|
|
+ this.tffFileName = tffFileName;
|
|
|
+ }
|
|
|
}
|