修改交班数据

This commit is contained in:
韩鹏辉
2024-05-29 16:00:12 +08:00
parent 664e57e145
commit 9482cf4597
14 changed files with 172 additions and 41 deletions

View File

@@ -36,8 +36,10 @@ public class HandoverInfo implements Serializable {
private String orderNum;
private String quickAmount;
public HandoverInfo(String merchantName, String startTime, String endTime, String staff, List<PayInfo> payInfos, List<HandoverInfo.MemberData> memberData, String totalAmount, String imprest, String payable, String handIn, String returnAmount,String orderNum
,List<ProductCategory> productCategories
,List<ProductCategory> productCategories,String quickAmount
) {
this.merchantName = merchantName;
@@ -53,6 +55,7 @@ public class HandoverInfo implements Serializable {
this.returnAmount=returnAmount;
this.orderNum = orderNum;
this.productCategories=productCategories;
this.quickAmount=quickAmount;
}
@Data