package com.gk.hotwork.specialWork.model.dto.resp;
|
|
public class WorkTypeStatisticRespDTO {
|
private Byte workType;
|
private String WorkTypeName;
|
private Integer count;
|
|
public Byte getWorkType() {
|
return workType;
|
}
|
|
public void setWorkType(Byte workType) {
|
this.workType = workType;
|
}
|
|
public String getWorkTypeName() {
|
return WorkTypeName;
|
}
|
|
public void setWorkTypeName(String workTypeName) {
|
WorkTypeName = workTypeName;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
}
|