Commit c4e41159 authored by 赵啸非's avatar 赵啸非

修改考勤汇总

parent 8cc29a90
......@@ -13,6 +13,7 @@ import com.mortals.xhx.module.attendance.service.AttendanceClassService;
import com.mortals.xhx.module.attendance.service.AttendanceGroupService;
import com.mortals.xhx.module.dept.model.DeptQuery;
import com.mortals.xhx.module.dept.service.DeptService;
import com.mortals.xhx.module.staff.service.StaffService;
import org.checkerframework.checker.units.qual.A;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.util.ObjectUtils;
......@@ -46,6 +47,8 @@ public class AttendanceRecordController extends BaseCRUDJsonBodyMappingControlle
@Autowired
private AttendanceClassService attendanceClassService;
@Autowired
private StaffService staffService;
public AttendanceRecordController() {
super.setModuleDesc("考勤打卡记录信息");
......
......@@ -7,8 +7,8 @@ import java.util.Map;
public enum NormalEnum implements IBaseEnum{
正常(0, "正常"),
异常(1, "异常");
异常(0, "异常"),
正常(1, "正常");
private int value;
private String desc;
......
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