添加单独打票相关mq处理
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
@@ -37,7 +38,8 @@ public class TbOrderDetail implements Serializable {
|
||||
private BigDecimal priceAmount;
|
||||
private BigDecimal packAmount;
|
||||
|
||||
@TableField(exist = false)
|
||||
private String remark;
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +1,10 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import lombok.ToString;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@ToString
|
||||
public class TbPrintMachine implements Serializable {
|
||||
private Integer id;
|
||||
|
||||
|
||||
@@ -1,7 +1,10 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity;
|
||||
|
||||
import lombok.ToString;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
@ToString
|
||||
public class TbPrintMachineWithBLOBs extends TbPrintMachine implements Serializable {
|
||||
private String config;
|
||||
|
||||
@@ -24,4 +27,4 @@ public class TbPrintMachineWithBLOBs extends TbPrintMachine implements Serializa
|
||||
public void setCategoryList(String categoryList) {
|
||||
this.categoryList = categoryList == null ? null : categoryList.trim();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user