修改打印时间

This commit is contained in:
牛叉闪闪
2024-07-25 10:56:29 +08:00
parent 3bd9766e42
commit d3e4c3ef4a
5 changed files with 78 additions and 113 deletions

View File

@@ -11,4 +11,15 @@ public class ProductInfo implements Serializable {
private String productName;
private Integer num;
private BigDecimal amount;
public ProductInfo(String productName, Integer num, BigDecimal amount) {
this.productName = productName;
this.num = num;
this.amount = amount;
}
public ProductInfo() {
super();
}
}