Commit 25ba8275 authored by 赵啸非's avatar 赵啸非

考勤异常添加绩效考核

parent 13301886
...@@ -91,14 +91,12 @@ ...@@ -91,14 +91,12 @@
{ {
name: "deptId", name: "deptId",
type: "select", type: "select",
label: "全部部门", label: "全部部门"
fuzzy: false
}, },
{ {
name: "groupId", name: "groupId",
type: "select", type: "select",
label: "全部考勤组", label: "全部考勤组"
fuzzy: false
}, },
/* { /* {
name: "classId", name: "classId",
...@@ -109,38 +107,34 @@ ...@@ -109,38 +107,34 @@
{ {
name: "errorStatus", name: "errorStatus",
type: "select", type: "select",
label: "全部异常状态", label: "全部异常状态"
fuzzy: false
}, },
{ {
name: "processStatus", name: "processStatus",
type: "select", type: "select",
label: "全部处理状态", label: "全部处理状态"
fuzzy: false
}, },
{ {
name:'attendanceDateStart', name:'errorDateTimeStart',
type: "date", type: "date",
label: "异常开始时间", label: "异常开始时间"
fuzzy: false
}, },
{ {
name:'attendanceDateEnd', name:'attendanceDateEnd',
type: "date", type: "date",
label: "异常结束时间", label: "errorDateTimeEnd"
fuzzy: false
}, },
{ {
name: "staffName", name: "staffName",
type: "text", type: "text",
label: "员工姓名", label: "员工姓名",
fuzzy: false fuzzy: true
}, },
{ {
name: "phoneNumber", name: "phoneNumber",
type: "text", type: "text",
label: "手机号", label: "手机号",
fuzzy: false fuzzy: true
}, },
], ],
columns: [ columns: [
......
...@@ -24,4 +24,12 @@ public class AttendanceRecordErrorVo extends BaseEntityLong { ...@@ -24,4 +24,12 @@ public class AttendanceRecordErrorVo extends BaseEntityLong {
*/ */
private List<AttendanceRecordErrorEntity> recordErrorEntities; private List<AttendanceRecordErrorEntity> recordErrorEntities;
/** 开始 异常时间 */
private String errorDateTimeStart;
/** 结束 异常时间 */
private String errorDateTimeEnd;
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment