package com.gk.hotwork.specialWork.entity;
|
|
public class WorkApplyCountDO {
|
//部门id
|
private Long depId;
|
//数量
|
private Integer count;
|
//作业类型
|
private Byte workType;
|
|
public Long getDepId() {
|
return depId;
|
}
|
|
public void setDepId(Long depId) {
|
this.depId = depId;
|
}
|
|
public Integer getCount() {
|
return count;
|
}
|
|
public void setCount(Integer count) {
|
this.count = count;
|
}
|
|
public Byte getWorkType() {
|
return workType;
|
}
|
|
public void setWorkType(Byte workType) {
|
this.workType = workType;
|
}
|
}
|