郑永安
2023-09-19 69185134fcfaf913ea45f1255677225a2cc311a4
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
37
package com.gk.hotwork.Domain.Vo;
 
/**
 * @author : jingjy
 * @date : 2021/10/20 16:23
 */
public class TaskStatistics {
    private Integer countNum;
 
    private String type;
 
    private String constructionunit;
 
    public Integer getCountNum() {
        return countNum;
    }
 
    public void setCountNum(Integer countNum) {
        this.countNum = countNum;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getConstructionunit() {
        return constructionunit;
    }
 
    public void setConstructionunit(String constructionunit) {
        this.constructionunit = constructionunit;
    }
}