首页数据改正
This commit is contained in:
@@ -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() {
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user