package com.ruoyi.system.domain.vo;
|
|
import com.ruoyi.common.annotation.Excel;
|
|
/**
|
* 分公司每日录单统计 VO
|
*/
|
public class DeptOrderStatVO {
|
|
/** 分公司ID */
|
private Long deptId;
|
|
/** 分公司名称 */
|
@Excel(name = "分公司")
|
private String deptName;
|
|
/** 统计日期,格式 yyyy-MM-dd */
|
@Excel(name = "日期")
|
private String statDate;
|
|
/** 录单数量 */
|
@Excel(name = "录单数量")
|
private Integer orderCount;
|
|
public Long getDeptId() { return deptId; }
|
public void setDeptId(Long deptId) { this.deptId = deptId; }
|
|
public String getDeptName() { return deptName; }
|
public void setDeptName(String deptName) { this.deptName = deptName; }
|
|
public String getStatDate() { return statDate; }
|
public void setStatDate(String statDate) { this.statDate = statDate; }
|
|
public Integer getOrderCount() { return orderCount; }
|
public void setOrderCount(Integer orderCount) { this.orderCount = orderCount; }
|
}
|