添加交班时间

This commit is contained in:
牛叉闪闪
2024-07-22 14:11:48 +08:00
parent cda3245f7b
commit 60267f5576
13 changed files with 284 additions and 21 deletions

View File

@@ -1,8 +1,11 @@
package com.chaozhanggui.system.cashierservice.model;
import com.chaozhanggui.system.cashierservice.entity.po.ProductInfo;
import com.chaozhanggui.system.cashierservice.entity.po.ProductInfoPO;
import lombok.Data;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.List;
@Data
@@ -38,8 +41,12 @@ public class HandoverInfo implements Serializable {
private String quickAmount;
private List<ProductInfoPO> productInfoPOS;
private List<ProductInfo> productInfos;
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,String quickAmount
,List<ProductCategory> productCategories,String quickAmount,List<ProductInfoPO> productInfoPOS,List<ProductInfo> productInfos
) {
this.merchantName = merchantName;
@@ -56,6 +63,8 @@ public class HandoverInfo implements Serializable {
this.orderNum = orderNum;
this.productCategories=productCategories;
this.quickAmount=quickAmount;
this.productInfoPOS=productInfoPOS;
this.productInfos=productInfos;
}
@Data
@@ -96,4 +105,6 @@ public class HandoverInfo implements Serializable {
this.amount = amount;
}
}
}