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

修改自动考核

parent a3a5c7f0
...@@ -273,25 +273,25 @@ public class PerformAttendAppealEntity extends PerformAttendAppealVo { ...@@ -273,25 +273,25 @@ public class PerformAttendAppealEntity extends PerformAttendAppealVo {
public void initAttrValue(){ public void initAttrValue(){
this.checkRecordId = -1L; this.checkRecordId = 0L;
this.staffId = -1L; this.staffId = 0L;
this.staffName = ""; this.staffName = "";
this.workNum = ""; this.workNum = "";
this.deptId = -1L; this.deptId = 0L;
this.deptName = ""; this.deptName = "";
this.attendanceGroupId = -1L; this.attendanceGroupId = 0L;
this.attendanceGroupName = ""; this.attendanceGroupName = "";
this.attendanceDate = null; this.attendanceDate = null;
this.ruleId = -1L; this.ruleId = 0L;
this.ruleName = ""; this.ruleName = "";
...@@ -329,7 +329,7 @@ public class PerformAttendAppealEntity extends PerformAttendAppealVo { ...@@ -329,7 +329,7 @@ public class PerformAttendAppealEntity extends PerformAttendAppealVo {
this.violationType = ""; this.violationType = "";
this.reviewResult = -1; this.reviewResult = 0;
this.reviewTime = null; this.reviewTime = null;
...@@ -359,7 +359,7 @@ public class PerformAttendAppealEntity extends PerformAttendAppealVo { ...@@ -359,7 +359,7 @@ public class PerformAttendAppealEntity extends PerformAttendAppealVo {
this.goworkTime = null; this.goworkTime = null;
this.irregularType = -1; this.irregularType = null;
this.happenTime = null; this.happenTime = null;
...@@ -369,7 +369,7 @@ public class PerformAttendAppealEntity extends PerformAttendAppealVo { ...@@ -369,7 +369,7 @@ public class PerformAttendAppealEntity extends PerformAttendAppealVo {
this.snapPath = ""; this.snapPath = "";
this.irregularOtherType = -1; this.irregularOtherType = null;
this.performType = ""; this.performType = "";
......
...@@ -9,6 +9,7 @@ import com.mortals.framework.model.Result; ...@@ -9,6 +9,7 @@ import com.mortals.framework.model.Result;
import com.mortals.framework.web.BaseCRUDJsonBodyMappingController; import com.mortals.framework.web.BaseCRUDJsonBodyMappingController;
import com.mortals.xhx.base.system.param.service.ParamService; import com.mortals.xhx.base.system.param.service.ParamService;
import com.mortals.xhx.common.code.EnabledEnum; import com.mortals.xhx.common.code.EnabledEnum;
import com.mortals.xhx.common.code.IrregularTypeEnum;
import com.mortals.xhx.common.code.YesNoEnum; import com.mortals.xhx.common.code.YesNoEnum;
import com.mortals.xhx.module.perform.model.vo.AppealInfo; import com.mortals.xhx.module.perform.model.vo.AppealInfo;
import com.mortals.xhx.module.perform.model.vo.AppealSummaryQuery; import com.mortals.xhx.module.perform.model.vo.AppealSummaryQuery;
...@@ -67,7 +68,7 @@ public class PerformAttendAppealController extends BaseCRUDJsonBodyMappingContro ...@@ -67,7 +68,7 @@ public class PerformAttendAppealController extends BaseCRUDJsonBodyMappingContro
this.addDict(model, "appealResult", paramService.getParamBySecondOrganize("PerformAttendAppeal", "appealResult")); this.addDict(model, "appealResult", paramService.getParamBySecondOrganize("PerformAttendAppeal", "appealResult"));
this.addDict(model, "reviewResult", paramService.getParamBySecondOrganize("PerformAttendAppeal", "reviewResult")); this.addDict(model, "reviewResult", paramService.getParamBySecondOrganize("PerformAttendAppeal", "reviewResult"));
this.addDict(model, "reviewSource", paramService.getParamBySecondOrganize("PerformAttendAppeal", "reviewSource")); this.addDict(model, "reviewSource", paramService.getParamBySecondOrganize("PerformAttendAppeal", "reviewSource"));
this.addDict(model, "irregularType", paramService.getParamBySecondOrganize("PerformAttendAppeal", "irregularType")); this.addDict(model, "irregularType", IrregularTypeEnum.getEnumMap());
this.addDict(model, "irregularOtherType", paramService.getParamBySecondOrganize("PerformAttendAppeal", "irregularOtherType")); this.addDict(model, "irregularOtherType", paramService.getParamBySecondOrganize("PerformAttendAppeal", "irregularOtherType"));
super.init(model, context); super.init(model, context);
} }
......
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