数据概览导出+优化

This commit is contained in:
ywh 2024-08-18 17:22:50 +08:00
parent d16d0648e7
commit d61a25e4da
1 changed files with 14 additions and 0 deletions

View File

@ -14,18 +14,32 @@ import java.util.List;
public class BusOverviewInfo extends BaseEntity public class BusOverviewInfo extends BaseEntity
{ {
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
@Excel(name = "账号")
private String account; private String account;
@Excel(name = "营销源总数")
private int grantTotal; private int grantTotal;
@Excel(name = "失效总数")
private int noGrantTotal; private int noGrantTotal;
@Excel(name = "在营销总数")
private int isGrantTotal; private int isGrantTotal;
@Excel(name = "订单数量")
private int orderTotal; private int orderTotal;
@Excel(name = "好评数量")
private int commentsTotal; private int commentsTotal;
@Excel(name = "五星数量")
private int fiveTotal; private int fiveTotal;
@Excel(name = "AI数量")
private int aiTotal; private int aiTotal;
@Excel(name = "短信数量")
private int smsTotal; private int smsTotal;
@Excel(name = "通过数量")
private int otherTotal; private int otherTotal;
@Excel(name = "消耗数量")
private int minusTotal; private int minusTotal;
@Excel(name = "营销比(%)")
private String rate; private String rate;
@Excel(name = "结算时间")
private String time; private String time;
public String getAccount() { public String getAccount() {