添加交班时间
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity.po;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Data
|
||||
public class ProductInfo implements Serializable {
|
||||
|
||||
private String productName;
|
||||
private Integer num;
|
||||
private BigDecimal amount;
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
package com.chaozhanggui.system.cashierservice.entity.po;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.math.BigDecimal;
|
||||
|
||||
@Data
|
||||
public class ProductInfoPO implements Serializable {
|
||||
|
||||
private Integer productId;
|
||||
private String productName;
|
||||
private String skuName;
|
||||
private Integer num;
|
||||
private BigDecimal amount;
|
||||
}
|
||||
Reference in New Issue
Block a user