添加飞蛾打印机
This commit is contained in:
@@ -30,6 +30,8 @@ public class OrderDetailPO implements Serializable {
|
||||
|
||||
List<Detail> detailList;
|
||||
|
||||
private String remark;
|
||||
|
||||
|
||||
@Data
|
||||
public static class Detail implements Serializable{
|
||||
@@ -41,6 +43,8 @@ public class OrderDetailPO implements Serializable {
|
||||
|
||||
private String remark;
|
||||
|
||||
private String spec;
|
||||
|
||||
public Detail(String productName, String number, String amount, String remark) {
|
||||
this.productName = productName;
|
||||
this.number = number;
|
||||
@@ -51,7 +55,7 @@ public class OrderDetailPO implements Serializable {
|
||||
}
|
||||
|
||||
|
||||
public OrderDetailPO(String merchantName, String printType, String masterId, String orderNo, String tradeDate, String operator, String receiptsAmount, String balance, String payType, String integral, List<Detail> detailList) {
|
||||
public OrderDetailPO(String merchantName, String printType, String masterId, String orderNo, String tradeDate, String operator, String receiptsAmount, String balance, String payType, String integral, List<Detail> detailList,String remark) {
|
||||
this.merchantName = merchantName;
|
||||
this.printType = printType;
|
||||
this.masterId = masterId;
|
||||
@@ -63,5 +67,6 @@ public class OrderDetailPO implements Serializable {
|
||||
this.payType = payType;
|
||||
this.integral = integral;
|
||||
this.detailList = detailList;
|
||||
this.remark=remark;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user