1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- package com.ruoyi.ptxlib.domain;
- import lombok.AllArgsConstructor;
- import lombok.Data;
- import lombok.NoArgsConstructor;
- /**
- * 标签打印文字类
- */
- @Data
- public class PTXLabelText {
- /** 文字类型 0:英文,1:中文*/
- private Integer textType;
- /** 标签间距 */
- private Integer spaceBetween;
- /** x坐标 10 = 4毫米 */
- private Integer x;
- /** y坐标 最小为 标签间距 / 2 - 5 */
- private Integer y;
- /** x轴垂直扩展 10 = 3毫米 */
- private Integer xLineHeight;
- /** y轴垂直扩展 10 = 3毫米 */
- private Integer yLineHeight;
- /** 打印的数据 */
- private String printData;
- /** tff字体文件名称(包含后缀) */
- private String tffFileName;
- public PTXLabelText() {
- }
- public PTXLabelText(Integer textType, Integer spaceBetween, Integer x, Integer y, Integer xLineHeight, Integer yLineHeight, String printData) {
- this.textType = textType;
- this.spaceBetween = spaceBetween;
- this.x = x;
- this.y = y;
- this.xLineHeight = xLineHeight;
- this.yLineHeight = yLineHeight;
- this.printData = printData;
- }
- public PTXLabelText(Integer textType, Integer spaceBetween, Integer x, Integer y, Integer xLineHeight, Integer yLineHeight, String printData, String tffFileName) {
- this.textType = textType;
- this.spaceBetween = spaceBetween;
- this.x = x;
- this.y = y;
- this.xLineHeight = xLineHeight;
- this.yLineHeight = yLineHeight;
- this.printData = printData;
- this.tffFileName = tffFileName;
- }
- }
|