forked from rongchao/epmet-cloud-rizhao
4 changed files with 96 additions and 12 deletions
@ -0,0 +1,45 @@ |
|||||
|
package com.epmet.excel.yt; |
||||
|
|
||||
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @author: qushutong |
||||
|
* @Date: 2023/4/6 13:33 |
||||
|
* @Description: 账户活跃情况 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class AccountActivityExcel implements Serializable { |
||||
|
private static final long serialVersionUID = -918630886413844674L; |
||||
|
|
||||
|
/** |
||||
|
* 组织名称 |
||||
|
*/ |
||||
|
@Excel(name = "组织名称") |
||||
|
private String agencyName = ""; |
||||
|
|
||||
|
/** |
||||
|
* 登陆次数 |
||||
|
*/ |
||||
|
@Excel(name = "登陆次数") |
||||
|
private String loginCount = ""; |
||||
|
|
||||
|
/** |
||||
|
* 活跃账号数 |
||||
|
*/ |
||||
|
@Excel(name = "活跃账号数") |
||||
|
private String accountActivityCount = ""; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* 总账号数 |
||||
|
*/ |
||||
|
@Excel(name = "总账号数") |
||||
|
private String accountCount = ""; |
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
@ -0,0 +1,28 @@ |
|||||
|
package com.epmet.excel.yt; |
||||
|
|
||||
|
import cn.afterturn.easypoi.excel.annotation.Excel; |
||||
|
import lombok.Data; |
||||
|
|
||||
|
import java.io.Serializable; |
||||
|
|
||||
|
|
||||
|
/** |
||||
|
* @author: qushutong |
||||
|
* @Date: 2023/4/6 13:33 |
||||
|
* @Description: 账户不活跃情况 |
||||
|
*/ |
||||
|
@Data |
||||
|
public class AccountInactivityExcel implements Serializable { |
||||
|
private static final long serialVersionUID = -918630886413844674L; |
||||
|
|
||||
|
/** |
||||
|
* 组织名称 |
||||
|
*/ |
||||
|
@Excel(name = "组织名称") |
||||
|
private String agencyName = ""; |
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
|
||||
|
} |
Loading…
Reference in new issue