12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package com.idiot.operationbackend.vo;
- import java.math.BigDecimal;
- /**
- * 粉丝 数据统计
- * @author wang xiao
- * @date Created in 17:01 2020/9/15
- */
- public class StatData {
- private String dateLabel;
- private Integer newNum;
- private Integer cancelNum;
- private Integer addNum;
- private Integer inactiveNum;
- public String getDateLabel() {
- return dateLabel;
- }
- public void setDateLabel(String dateLabel) {
- this.dateLabel = dateLabel;
- }
- public Integer getNewNum() {
- return newNum;
- }
- public void setNewNum(Integer newNum) {
- this.newNum = newNum;
- }
- public Integer getCancelNum() {
- return cancelNum;
- }
- public void setCancelNum(Integer cancelNum) {
- this.cancelNum = cancelNum;
- }
- public Integer getAddNum() {
- return addNum;
- }
- public void setAddNum(Integer addNum) {
- this.addNum = addNum;
- }
- public Integer getInactiveNum() {
- return inactiveNum;
- }
- public void setInactiveNum(Integer inactiveNum) {
- this.inactiveNum = inactiveNum;
- }
- }
|