首页商品排行排名

This commit is contained in:
liuyingfang
2024-03-15 15:05:34 +08:00
parent 0ad9234279
commit 510b6a22ca
3 changed files with 31 additions and 4 deletions

View File

@@ -0,0 +1,26 @@
package cn.ysk.cashier.vo;
import lombok.Data;
import java.math.BigDecimal;
import java.math.BigInteger;
/**
* @author lyf
*/
@Data
public class ProductExtVO {
private BigInteger productId;
private String productName;
private BigDecimal productNum;
private BigDecimal amount;
public ProductExtVO() {
this.productId = productId;
this.productName = productName;
this.productNum = productNum;
}
}