wlzboy
2 天以前 6b29bd596f8b48485d3506bfba4a1e0ea6c7df99
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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; }
}