PTXLabelText.java 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. package com.ruoyi.ptxlib.domain;
  2. import lombok.AllArgsConstructor;
  3. import lombok.Data;
  4. import lombok.NoArgsConstructor;
  5. /**
  6. * 标签打印文字类
  7. */
  8. @Data
  9. public class PTXLabelText {
  10. /** 文字类型 0:英文,1:中文*/
  11. private Integer textType;
  12. /** 标签间距 */
  13. private Integer spaceBetween;
  14. /** x坐标 10 = 4毫米 */
  15. private Integer x;
  16. /** y坐标 最小为 标签间距 / 2 - 5 */
  17. private Integer y;
  18. /** x轴垂直扩展 10 = 3毫米 */
  19. private Integer xLineHeight;
  20. /** y轴垂直扩展 10 = 3毫米 */
  21. private Integer yLineHeight;
  22. /** 打印的数据 */
  23. private String printData;
  24. /** tff字体文件名称(包含后缀) */
  25. private String tffFileName;
  26. public PTXLabelText() {
  27. }
  28. public PTXLabelText(Integer textType, Integer spaceBetween, Integer x, Integer y, Integer xLineHeight, Integer yLineHeight, String printData) {
  29. this.textType = textType;
  30. this.spaceBetween = spaceBetween;
  31. this.x = x;
  32. this.y = y;
  33. this.xLineHeight = xLineHeight;
  34. this.yLineHeight = yLineHeight;
  35. this.printData = printData;
  36. }
  37. public PTXLabelText(Integer textType, Integer spaceBetween, Integer x, Integer y, Integer xLineHeight, Integer yLineHeight, String printData, String tffFileName) {
  38. this.textType = textType;
  39. this.spaceBetween = spaceBetween;
  40. this.x = x;
  41. this.y = y;
  42. this.xLineHeight = xLineHeight;
  43. this.yLineHeight = yLineHeight;
  44. this.printData = printData;
  45. this.tffFileName = tffFileName;
  46. }
  47. }