PTXLabelCode.java 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. package com.ruoyi.ptxlib.domain;
  2. import lombok.Data;
  3. @Data
  4. public class PTXLabelCode {
  5. /** 二维码类型 1:条形码 2:二维码 */
  6. private Integer codeType;
  7. /** 标签间距 */
  8. private Integer spaceBetween;
  9. /** x坐标 10 = 4毫米 */
  10. private Integer X;
  11. /** y坐标 10 = 1毫米 最小为 标签间距 / 2 - 5 */
  12. private Integer Y;
  13. /** 宽度<br/>
  14. * 条形码:最大宽度:4
  15. * 二维码:5 = 1厘米
  16. * */
  17. private Integer width;
  18. /** 存入数据<br/>
  19. * 条形码不可以写入中文
  20. * */
  21. private String data;
  22. /** 条形码下是否显示文字 */
  23. private Boolean isShowText;
  24. /** 条形码高度<br/>
  25. * 单位为0.1英寸<br/>
  26. * 包含码文是最小为4,不包含码文是最小为3,最大99
  27. * */
  28. private Double height;
  29. public PTXLabelCode() {
  30. }
  31. public PTXLabelCode(Integer codeType, Integer spaceBetween, Integer x, Integer y, Integer width, String data) {
  32. this.codeType = codeType;
  33. this.spaceBetween = spaceBetween;
  34. this.X = x;
  35. this.Y = y;
  36. this.width = width;
  37. this.data = data;
  38. }
  39. public PTXLabelCode(Integer codeType, Integer spaceBetween, Integer x, Integer y, Integer width, String data, Boolean isShowText, Double height) {
  40. this.codeType = codeType;
  41. this.spaceBetween = spaceBetween;
  42. this.X = x;
  43. this.Y = y;
  44. this.width = width;
  45. this.data = data;
  46. this.isShowText = isShowText;
  47. this.height = height;
  48. }
  49. }