数据报表-销量 增加销售金额 退款金额

This commit is contained in:
2024-06-18 09:13:40 +08:00
parent 6c30aa2abd
commit d8b92aadf9
4 changed files with 93 additions and 54 deletions

View File

@@ -1,5 +1,6 @@
package cn.ysk.cashier.dto;
import org.apache.commons.lang3.StringUtils;
import org.springframework.format.annotation.DateTimeFormat;
import java.util.Date;
@@ -7,12 +8,20 @@ public class ShopSummaryDto {
private String shopId;
private String proName;
private Integer type;
private Integer cateId;
private String cateId;
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date startTime;
@DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss")
private Date endTime;
public String getCateId() {
return cateId;
}
public void setCateId(String cateId) {
this.cateId = cateId;
}
public String getShopId() {
return shopId;
}
@@ -26,7 +35,9 @@ public class ShopSummaryDto {
}
public void setProName(String proName) {
this.proName = proName;
if(StringUtils.isNotBlank(proName)){
this.proName = proName;
}
}
public Integer getType() {
@@ -37,14 +48,6 @@ public class ShopSummaryDto {
this.type = type;
}
public Integer getCateId() {
return cateId;
}
public void setCateId(Integer cateId) {
this.cateId = cateId;
}
public Date getStartTime() {
return startTime;
}