4 changed files with 372 additions and 1 deletions
@ -0,0 +1,73 @@ |
|||
package com.zc.business.domain.export; |
|||
|
|||
import com.ruoyi.common.annotation.Excel; |
|||
import com.ruoyi.common.core.domain.BaseEntity; |
|||
import org.apache.commons.lang3.builder.ToStringBuilder; |
|||
|
|||
/** |
|||
* 导出月发布渠道趋势分析 |
|||
* |
|||
* @author ruoyi |
|||
* @date 2024-01-13 |
|||
*/ |
|||
public class EventTypePublishManageMonth extends BaseEntity |
|||
{ |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
|
|||
/** 事件类型 */ |
|||
@Excel(name = "事件类型") |
|||
private String typeName; |
|||
|
|||
/** 情报板 */ |
|||
@Excel(name = "情报板") |
|||
private String board; |
|||
/** 语音广播 */ |
|||
@Excel(name = "语音广播") |
|||
private String broadcast; |
|||
/** 企业微信 */ |
|||
@Excel(name = "企业微信") |
|||
private String weChat; |
|||
|
|||
public String getTypeName() { |
|||
return typeName; |
|||
} |
|||
|
|||
public void setTypeName(String typeName) { |
|||
this.typeName = typeName; |
|||
} |
|||
|
|||
public String getBoard() { |
|||
return board; |
|||
} |
|||
|
|||
public void setBoard(String board) { |
|||
this.board = board; |
|||
} |
|||
|
|||
public String getBroadcast() { |
|||
return broadcast; |
|||
} |
|||
|
|||
public void setBroadcast(String broadcast) { |
|||
this.broadcast = broadcast; |
|||
} |
|||
|
|||
public String getWeChat() { |
|||
return weChat; |
|||
} |
|||
|
|||
public void setWeChat(String weChat) { |
|||
this.weChat = weChat; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
return new ToStringBuilder(this) |
|||
.append("typeName", typeName) |
|||
.append("board", board) |
|||
.append("broadcast", broadcast) |
|||
.append("weChat", weChat) |
|||
.toString(); |
|||
} |
|||
} |
@ -0,0 +1,61 @@ |
|||
package com.zc.business.domain.export; |
|||
|
|||
import com.ruoyi.common.annotation.Excel; |
|||
import com.ruoyi.common.core.domain.BaseEntity; |
|||
import org.apache.commons.lang3.builder.ToStringBuilder; |
|||
|
|||
/** |
|||
* 导出今日发布渠道分析对象 |
|||
* |
|||
* @author ruoyi |
|||
* @date 2024-01-13 |
|||
*/ |
|||
public class StatisticsPublishManage extends BaseEntity |
|||
{ |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
|
|||
/** 渠道 */ |
|||
@Excel(name = "渠道") |
|||
private String channelName; |
|||
|
|||
/** 数量 */ |
|||
@Excel(name = "数量") |
|||
private String num; |
|||
/** 占比 */ |
|||
@Excel(name = "占比") |
|||
private String ratio; |
|||
|
|||
public String getChannelName() { |
|||
return channelName; |
|||
} |
|||
|
|||
public void setChannelName(String channelName) { |
|||
this.channelName = channelName; |
|||
} |
|||
|
|||
public String getNum() { |
|||
return num; |
|||
} |
|||
|
|||
public void setNum(String num) { |
|||
this.num = num; |
|||
} |
|||
|
|||
public String getRatio() { |
|||
return ratio; |
|||
} |
|||
|
|||
public void setRatio(String ratio) { |
|||
this.ratio = ratio; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
return new ToStringBuilder(this) |
|||
.append("channelName", channelName) |
|||
.append("num", num) |
|||
.append("ratio", ratio) |
|||
.toString(); |
|||
} |
|||
} |
@ -0,0 +1,73 @@ |
|||
package com.zc.business.domain.export; |
|||
|
|||
import com.ruoyi.common.annotation.Excel; |
|||
import com.ruoyi.common.core.domain.BaseEntity; |
|||
import org.apache.commons.lang3.builder.ToStringBuilder; |
|||
|
|||
/** |
|||
* 导出月发布渠道趋势分析 |
|||
* |
|||
* @author ruoyi |
|||
* @date 2024-01-13 |
|||
*/ |
|||
public class TrendsPublishManage extends BaseEntity |
|||
{ |
|||
private static final long serialVersionUID = 1L; |
|||
|
|||
|
|||
/** 时间 */ |
|||
@Excel(name = "时间") |
|||
private String publishTime; |
|||
|
|||
/** 情报板 */ |
|||
@Excel(name = "情报板") |
|||
private String board; |
|||
/** 语音广播 */ |
|||
@Excel(name = "语音广播") |
|||
private String broadcast; |
|||
/** 企业微信 */ |
|||
@Excel(name = "企业微信") |
|||
private String weChat; |
|||
|
|||
public String getPublishTime() { |
|||
return publishTime; |
|||
} |
|||
|
|||
public void setPublishTime(String publishTime) { |
|||
this.publishTime = publishTime; |
|||
} |
|||
|
|||
public String getBoard() { |
|||
return board; |
|||
} |
|||
|
|||
public void setBoard(String board) { |
|||
this.board = board; |
|||
} |
|||
|
|||
public String getBroadcast() { |
|||
return broadcast; |
|||
} |
|||
|
|||
public void setBroadcast(String broadcast) { |
|||
this.broadcast = broadcast; |
|||
} |
|||
|
|||
public String getWeChat() { |
|||
return weChat; |
|||
} |
|||
|
|||
public void setWeChat(String weChat) { |
|||
this.weChat = weChat; |
|||
} |
|||
|
|||
@Override |
|||
public String toString() { |
|||
return new ToStringBuilder(this) |
|||
.append("publishTime", publishTime) |
|||
.append("board", board) |
|||
.append("broadcast", broadcast) |
|||
.append("weChat", weChat) |
|||
.toString(); |
|||
} |
|||
} |
Loading…
Reference in new issue