同步hr系统出勤记录信息
parent
9115dc753f
commit
dc0fa3c606
@ -0,0 +1,98 @@
|
|||||||
|
package com.op.mes.domain;
|
||||||
|
|
||||||
|
import com.op.common.core.annotation.Excel;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* remark
|
||||||
|
*
|
||||||
|
* @author 019117
|
||||||
|
* @date
|
||||||
|
*/
|
||||||
|
public class MesPostAttendanceRecords {
|
||||||
|
|
||||||
|
@Excel(name = "排序")
|
||||||
|
private String sort;
|
||||||
|
|
||||||
|
@Excel(name = "岗位")
|
||||||
|
private String post;
|
||||||
|
|
||||||
|
@Excel(name = "总人数")
|
||||||
|
private String allNum;
|
||||||
|
|
||||||
|
@Excel(name = "出勤人数")
|
||||||
|
private String attendNum;
|
||||||
|
|
||||||
|
@Excel(name = "缺勤人数")
|
||||||
|
private String diffNum;
|
||||||
|
|
||||||
|
private String beginDate;
|
||||||
|
|
||||||
|
private String endDate;
|
||||||
|
|
||||||
|
private String deptId;
|
||||||
|
|
||||||
|
|
||||||
|
public String getSort() {
|
||||||
|
return sort;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setSort(String sort) {
|
||||||
|
this.sort = sort;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPost() {
|
||||||
|
return post;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setPost(String post) {
|
||||||
|
this.post = post;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAllNum() {
|
||||||
|
return allNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAllNum(String allNum) {
|
||||||
|
this.allNum = allNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getAttendNum() {
|
||||||
|
return attendNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setAttendNum(String attendNum) {
|
||||||
|
this.attendNum = attendNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDiffNum() {
|
||||||
|
return diffNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDiffNum(String diffNum) {
|
||||||
|
this.diffNum = diffNum;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBeginDate() {
|
||||||
|
return beginDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBeginDate(String beginDate) {
|
||||||
|
this.beginDate = beginDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getEndDate() {
|
||||||
|
return endDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setEndDate(String endDate) {
|
||||||
|
this.endDate = endDate;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDeptId() {
|
||||||
|
return deptId;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDeptId(String deptId) {
|
||||||
|
this.deptId = deptId;
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue