首页数据改正

This commit is contained in:
liuyingfang
2024-04-18 11:44:11 +08:00
parent ed5c27c37e
commit 19ff867dee
5 changed files with 149 additions and 27 deletions

View File

@@ -1,6 +1,7 @@
package cn.ysk.cashier.vo;
import lombok.Data;
import org.hibernate.annotations.Formula;
import java.math.BigDecimal;
import java.math.BigInteger;
@@ -10,17 +11,20 @@ import java.math.BigInteger;
*/
@Data
public class ProductExtVO {
private BigInteger productId;
private String productName;
private BigDecimal productNum;
private BigDecimal amount;
private Object productNum;
private Object amount;
public ProductExtVO() {
public ProductExtVO(BigInteger productId, String productName, Object productNum, Object amount) {
this.productId = productId;
this.productName = productName;
this.productNum = productNum;
this.amount = amount;
}
public ProductExtVO() {
}
}