对比新文件 |
| | |
| | | package com.gk.firework.Domain; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | |
| | | import java.io.Serializable; |
| | | |
| | | @TableName(value = "controlprintparam",resultMap = "BaseResultMap") |
| | | public class ControlPrintParam implements Serializable { |
| | | @TableField(exist = false) |
| | | private static final long serialVersionUID = 1L; |
| | | /** id **/ |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | /** 归属设置 owner **/ |
| | | private String owner; |
| | | |
| | | /** 类型(1.内包装打印;2.外包装打印) type **/ |
| | | private Byte type; |
| | | |
| | | /** 左标签X轴基准值 leftbasex **/ |
| | | @TableField(value = "leftbasex") |
| | | private Integer leftBaseX; |
| | | |
| | | /** 右标签X轴基准值 rightbasex **/ |
| | | @TableField(value = "rightbasex") |
| | | private Integer rightBaseX; |
| | | |
| | | /** 左标签二维码X轴值 leftqrx **/ |
| | | @TableField(value = "leftqrx") |
| | | private Integer leftQrX; |
| | | |
| | | /** 右标签二维码X轴值 rightqrx **/ |
| | | @TableField(value = "rightqrx") |
| | | private Integer rightQrX; |
| | | |
| | | /** 左标签边框基准值 leftframex **/ |
| | | @TableField(value = "leftframex") |
| | | private Integer leftFrameX; |
| | | |
| | | /** 右标签边框基准值 rightframex **/ |
| | | @TableField(value = "rightframex") |
| | | private Integer rightFrameX; |
| | | |
| | | /** 标签边框Y轴基准值 framey **/ |
| | | @TableField(value = "framey") |
| | | private Integer frameY; |
| | | |
| | | /** 标签边框宽度 framewidth **/ |
| | | @TableField(value = "framewidth") |
| | | private Integer frameWidth; |
| | | |
| | | /** 标签边框高度 frameheight **/ |
| | | @TableField(value = "frameheight") |
| | | private Integer frameHeight; |
| | | |
| | | /** 标题与基准X值的偏移量 titlexoffset **/ |
| | | @TableField(value = "titleoffsetx") |
| | | private Integer titleOffsetX; |
| | | |
| | | /** 标题Y轴值 titley **/ |
| | | @TableField(value = "titley") |
| | | private Integer titleY; |
| | | |
| | | /** 条形码Y轴值 barcodey **/ |
| | | @TableField(value = "barcodey") |
| | | private Integer barcodeY; |
| | | |
| | | /** 条形码宽度值 barcodewidth **/ |
| | | @TableField(value = "barcodewidth") |
| | | private Integer barcodeWidth; |
| | | |
| | | /** 条形码宽度倍率 barcodewidthradio **/ |
| | | @TableField(value = "barcodewidthradio") |
| | | private Integer barcodeWidthRadio; |
| | | |
| | | /** 条形码高度值 barcodeheight **/ |
| | | @TableField(value = "barcodeheight") |
| | | private Integer barcodeHeight; |
| | | |
| | | /** 二维码标准值 qrcodemodel **/ |
| | | @TableField(value = "qrcodemodel") |
| | | private Integer qrCodeModel; |
| | | |
| | | /** 二维码放大倍率 qrcodemagnification **/ |
| | | @TableField(value = "qrcodemagnification") |
| | | private Integer qrCodeMagnification; |
| | | |
| | | /** 二维码X轴值 qrx **/ |
| | | @TableField(value = "qrx") |
| | | private Integer qrX; |
| | | |
| | | /** 二维码Y轴值 qry **/ |
| | | @TableField(value = "qry") |
| | | private Integer qrY; |
| | | |
| | | /** 字体大小1号 fontsize1 **/ |
| | | private Integer fontsize1; |
| | | |
| | | /** 字体大小2号 fontsize2 **/ |
| | | private Integer fontsize2; |
| | | |
| | | /** 字体大小3号 fontsize3 **/ |
| | | private Integer fontsize3; |
| | | |
| | | /** 条形码文字Y轴值 barcodetexty **/ |
| | | @TableField(value = "barcodetexty") |
| | | private Integer barcodeTextY; |
| | | |
| | | /** 商品名称Y轴值 itemnamey **/ |
| | | @TableField(value = "itemnamey") |
| | | private Integer itemNameY; |
| | | |
| | | /** 类型Y轴值 typey **/ |
| | | @TableField(value = "typey") |
| | | private Integer typeY; |
| | | |
| | | /** 日期Y轴值 datey **/ |
| | | @TableField(value = "datey") |
| | | private Integer dateY; |
| | | |
| | | /** 生产厂家Y轴值 manufacturery **/ |
| | | @TableField(value = "manufacturery") |
| | | private Integer manufacturerY; |
| | | |
| | | /** 生产厂家Y轴值2 manufacturery2 **/ |
| | | @TableField(value = "manufacturery2") |
| | | private Integer manufacturerY2; |
| | | |
| | | /** 总装药量Y轴值2 totaly **/ |
| | | @TableField(value = "totaly") |
| | | private Integer totalY; |
| | | |
| | | private Integer darkness; |
| | | |
| | | /** 标记 flag **/ |
| | | private Byte flag; |
| | | |
| | | /** 扩展内容 content **/ |
| | | private String content; |
| | | |
| | | public Long getId() { |
| | | return id; |
| | | } |
| | | |
| | | public void setId(Long id) { |
| | | this.id = id; |
| | | } |
| | | |
| | | public Byte getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(Byte type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public String getOwner() { |
| | | return owner; |
| | | } |
| | | |
| | | public void setOwner(String owner) { |
| | | this.owner = owner; |
| | | } |
| | | |
| | | public Integer getLeftBaseX() { |
| | | return leftBaseX; |
| | | } |
| | | |
| | | public void setLeftBaseX(Integer leftBaseX) { |
| | | this.leftBaseX = leftBaseX; |
| | | } |
| | | |
| | | public Integer getRightBaseX() { |
| | | return rightBaseX; |
| | | } |
| | | |
| | | public void setRightBaseX(Integer rightBaseX) { |
| | | this.rightBaseX = rightBaseX; |
| | | } |
| | | |
| | | public Integer getLeftQrX() { |
| | | return leftQrX; |
| | | } |
| | | |
| | | public void setLeftQrX(Integer leftQrX) { |
| | | this.leftQrX = leftQrX; |
| | | } |
| | | |
| | | public Integer getRightQrX() { |
| | | return rightQrX; |
| | | } |
| | | |
| | | public void setRightQrX(Integer rightQrX) { |
| | | this.rightQrX = rightQrX; |
| | | } |
| | | |
| | | public Integer getLeftFrameX() { |
| | | return leftFrameX; |
| | | } |
| | | |
| | | public void setLeftFrameX(Integer leftFrameX) { |
| | | this.leftFrameX = leftFrameX; |
| | | } |
| | | |
| | | public Integer getFrameWidth() { |
| | | return frameWidth; |
| | | } |
| | | |
| | | public void setFrameWidth(Integer frameWidth) { |
| | | this.frameWidth = frameWidth; |
| | | } |
| | | |
| | | public Integer getFrameHeight() { |
| | | return frameHeight; |
| | | } |
| | | |
| | | public void setFrameHeight(Integer frameHeight) { |
| | | this.frameHeight = frameHeight; |
| | | } |
| | | |
| | | public Integer getRightFrameX() { |
| | | return rightFrameX; |
| | | } |
| | | |
| | | public void setRightFrameX(Integer rightFrameX) { |
| | | this.rightFrameX = rightFrameX; |
| | | } |
| | | |
| | | public Integer getFrameY() { |
| | | return frameY; |
| | | } |
| | | |
| | | public void setFrameY(Integer frameY) { |
| | | this.frameY = frameY; |
| | | } |
| | | |
| | | public Integer getTitleOffsetX() { |
| | | return titleOffsetX; |
| | | } |
| | | |
| | | public void setTitleOffsetX(Integer titleOffsetX) { |
| | | this.titleOffsetX = titleOffsetX; |
| | | } |
| | | |
| | | public Integer getTitleY() { |
| | | return titleY; |
| | | } |
| | | |
| | | public void setTitleY(Integer titleY) { |
| | | this.titleY = titleY; |
| | | } |
| | | |
| | | public Integer getBarcodeY() { |
| | | return barcodeY; |
| | | } |
| | | |
| | | public void setBarcodeY(Integer barcodeY) { |
| | | this.barcodeY = barcodeY; |
| | | } |
| | | |
| | | public Integer getBarcodeWidth() { |
| | | return barcodeWidth; |
| | | } |
| | | |
| | | public void setBarcodeWidth(Integer barcodeWidth) { |
| | | this.barcodeWidth = barcodeWidth; |
| | | } |
| | | |
| | | public Integer getBarcodeWidthRadio() { |
| | | return barcodeWidthRadio; |
| | | } |
| | | |
| | | public void setBarcodeWidthRadio(Integer barcodeWidthRadio) { |
| | | this.barcodeWidthRadio = barcodeWidthRadio; |
| | | } |
| | | |
| | | public Integer getBarcodeHeight() { |
| | | return barcodeHeight; |
| | | } |
| | | |
| | | public void setBarcodeHeight(Integer barcodeHeight) { |
| | | this.barcodeHeight = barcodeHeight; |
| | | } |
| | | |
| | | public Integer getQrCodeModel() { |
| | | return qrCodeModel; |
| | | } |
| | | |
| | | public void setQrCodeModel(Integer qrCodeModel) { |
| | | this.qrCodeModel = qrCodeModel; |
| | | } |
| | | |
| | | public Integer getQrCodeMagnification() { |
| | | return qrCodeMagnification; |
| | | } |
| | | |
| | | public void setQrCodeMagnification(Integer qrCodeMagnification) { |
| | | this.qrCodeMagnification = qrCodeMagnification; |
| | | } |
| | | |
| | | public Integer getQrX() { |
| | | return qrX; |
| | | } |
| | | |
| | | public void setQrX(Integer qrX) { |
| | | this.qrX = qrX; |
| | | } |
| | | |
| | | public Integer getQrY() { |
| | | return qrY; |
| | | } |
| | | |
| | | public void setQrY(Integer qrY) { |
| | | this.qrY = qrY; |
| | | } |
| | | |
| | | public Integer getFontsize1() { |
| | | return fontsize1; |
| | | } |
| | | |
| | | public void setFontsize1(Integer fontsize1) { |
| | | this.fontsize1 = fontsize1; |
| | | } |
| | | |
| | | public Integer getFontsize2() { |
| | | return fontsize2; |
| | | } |
| | | |
| | | public void setFontsize2(Integer fontsize2) { |
| | | this.fontsize2 = fontsize2; |
| | | } |
| | | |
| | | public Integer getFontsize3() { |
| | | return fontsize3; |
| | | } |
| | | |
| | | public void setFontsize3(Integer fontsize3) { |
| | | this.fontsize3 = fontsize3; |
| | | } |
| | | |
| | | public Integer getBarcodeTextY() { |
| | | return barcodeTextY; |
| | | } |
| | | |
| | | public void setBarcodeTextY(Integer barcodeTextY) { |
| | | this.barcodeTextY = barcodeTextY; |
| | | } |
| | | |
| | | public Integer getItemNameY() { |
| | | return itemNameY; |
| | | } |
| | | |
| | | public void setItemNameY(Integer itemNameY) { |
| | | this.itemNameY = itemNameY; |
| | | } |
| | | |
| | | public Integer getTypeY() { |
| | | return typeY; |
| | | } |
| | | |
| | | public void setTypeY(Integer typeY) { |
| | | this.typeY = typeY; |
| | | } |
| | | |
| | | public Integer getDateY() { |
| | | return dateY; |
| | | } |
| | | |
| | | public void setDateY(Integer dateY) { |
| | | this.dateY = dateY; |
| | | } |
| | | |
| | | public Integer getManufacturerY() { |
| | | return manufacturerY; |
| | | } |
| | | |
| | | public void setManufacturerY(Integer manufacturerY) { |
| | | this.manufacturerY = manufacturerY; |
| | | } |
| | | |
| | | public Integer getManufacturerY2() { |
| | | return manufacturerY2; |
| | | } |
| | | |
| | | public void setManufacturerY2(Integer manufacturerY2) { |
| | | this.manufacturerY2 = manufacturerY2; |
| | | } |
| | | |
| | | public Integer getTotalY() { |
| | | return totalY; |
| | | } |
| | | |
| | | public void setTotalY(Integer totalY) { |
| | | this.totalY = totalY; |
| | | } |
| | | |
| | | public Byte getFlag() { |
| | | return flag; |
| | | } |
| | | |
| | | public void setFlag(Byte flag) { |
| | | this.flag = flag; |
| | | } |
| | | |
| | | public String getContent() { |
| | | return content; |
| | | } |
| | | |
| | | public void setContent(String content) { |
| | | this.content = content; |
| | | } |
| | | |
| | | public Integer getDarkness() { |
| | | return darkness; |
| | | } |
| | | |
| | | public void setDarkness(Integer darkness) { |
| | | this.darkness = darkness; |
| | | } |
| | | } |