添加飞蛾打印机

This commit is contained in:
韩鹏辉
2024-04-03 17:32:50 +08:00
parent 3bb8dfed1e
commit acfe518420
6 changed files with 502 additions and 11 deletions

View File

@@ -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;
}
}