微信导粉统计
This commit is contained in:
@ -0,0 +1,25 @@
|
||||
package com.stdiet.custom.dto.request;
|
||||
|
||||
import com.stdiet.common.core.domain.BaseEntity;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
public class FanStatisticsRequest extends BaseEntity {
|
||||
|
||||
private static final long serialVersionUID = 1L;
|
||||
|
||||
//销售用户ID
|
||||
private Long userId;
|
||||
|
||||
//进粉统计日期
|
||||
private Date fanTime;
|
||||
|
||||
//微信ID数组
|
||||
private Long[] wxId;
|
||||
|
||||
//微信进粉量数组
|
||||
private Integer[] fanNum;
|
||||
|
||||
}
|
@ -0,0 +1,28 @@
|
||||
package com.stdiet.custom.dto.response;
|
||||
|
||||
import com.stdiet.common.annotation.Excel;
|
||||
import lombok.Data;
|
||||
|
||||
@Data
|
||||
public class ExportFanStatisticsResponse {
|
||||
|
||||
//序号
|
||||
@Excel(name = "序号")
|
||||
private Integer id;
|
||||
|
||||
//销售姓名
|
||||
@Excel(name = "销售姓名")
|
||||
private String saleName;
|
||||
|
||||
//账号
|
||||
@Excel(name = "账号")
|
||||
private String account;
|
||||
|
||||
//微信号
|
||||
@Excel(name = "微信号")
|
||||
private String wxAccount;
|
||||
|
||||
//进粉量、
|
||||
@Excel(name = "进粉量")
|
||||
private Integer fanNum;
|
||||
}
|
Reference in New Issue
Block a user