|
@@ -69,199 +69,202 @@ public class AttendanceDetail extends SliceJpaObject {
|
|
|
*/
|
|
*/
|
|
|
public static final String empNo_FIELDNAME = "empNo";
|
|
public static final String empNo_FIELDNAME = "empNo";
|
|
|
@FieldDescribe("员工号")
|
|
@FieldDescribe("员工号")
|
|
|
- @Column( length = JpaObject.length_96B, name = ColumnNamePrefix + empNo_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_96B, name = ColumnNamePrefix + empNo_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String empNo;
|
|
private String empNo;
|
|
|
|
|
|
|
|
public static final String empName_FIELDNAME = "empName";
|
|
public static final String empName_FIELDNAME = "empName";
|
|
|
@FieldDescribe("员工姓名distinguishedName")
|
|
@FieldDescribe("员工姓名distinguishedName")
|
|
|
- @Column( length = AbstractPersistenceProperties.organization_name_length, name = ColumnNamePrefix + empName_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(length = AbstractPersistenceProperties.organization_name_length, name = ColumnNamePrefix
|
|
|
|
|
+ + empName_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String empName;
|
|
private String empName;
|
|
|
|
|
|
|
|
public static final String topUnitName_FIELDNAME = "topUnitName";
|
|
public static final String topUnitName_FIELDNAME = "topUnitName";
|
|
|
@FieldDescribe("顶层组织名称distinguishedName")
|
|
@FieldDescribe("顶层组织名称distinguishedName")
|
|
|
- @Column( length = AbstractPersistenceProperties.organization_name_length, name = ColumnNamePrefix + topUnitName_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(length = AbstractPersistenceProperties.organization_name_length, name = ColumnNamePrefix
|
|
|
|
|
+ + topUnitName_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String topUnitName;
|
|
private String topUnitName;
|
|
|
|
|
|
|
|
public static final String unitName_FIELDNAME = "unitName";
|
|
public static final String unitName_FIELDNAME = "unitName";
|
|
|
@FieldDescribe("组织名称distinguishedName")
|
|
@FieldDescribe("组织名称distinguishedName")
|
|
|
- @Column( length = AbstractPersistenceProperties.organization_name_length, name = ColumnNamePrefix + unitName_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(length = AbstractPersistenceProperties.organization_name_length, name = ColumnNamePrefix
|
|
|
|
|
+ + unitName_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String unitName;
|
|
private String unitName;
|
|
|
|
|
|
|
|
public static final String recordDate_FIELDNAME = "recordDate";
|
|
public static final String recordDate_FIELDNAME = "recordDate";
|
|
|
@FieldDescribe("打卡记录日期")
|
|
@FieldDescribe("打卡记录日期")
|
|
|
@Temporal(TemporalType.TIMESTAMP)
|
|
@Temporal(TemporalType.TIMESTAMP)
|
|
|
- @Column( name = ColumnNamePrefix + recordDate_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + recordDate_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private Date recordDate;
|
|
private Date recordDate;
|
|
|
|
|
|
|
|
public static final String yearString_FIELDNAME = "yearString";
|
|
public static final String yearString_FIELDNAME = "yearString";
|
|
|
@FieldDescribe("打卡记录年份")
|
|
@FieldDescribe("打卡记录年份")
|
|
|
- @Column( length = JpaObject.length_16B, name = ColumnNamePrefix + yearString_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_16B, name = ColumnNamePrefix + yearString_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String yearString;
|
|
private String yearString;
|
|
|
|
|
|
|
|
public static final String monthString_FIELDNAME = "monthString";
|
|
public static final String monthString_FIELDNAME = "monthString";
|
|
|
@FieldDescribe("打卡记录月份")
|
|
@FieldDescribe("打卡记录月份")
|
|
|
- @Column( length = JpaObject.length_16B, name = ColumnNamePrefix + monthString_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_16B, name = ColumnNamePrefix + monthString_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String monthString;
|
|
private String monthString;
|
|
|
|
|
|
|
|
public static final String recordDateString_FIELDNAME = "recordDateString";
|
|
public static final String recordDateString_FIELDNAME = "recordDateString";
|
|
|
@FieldDescribe("打卡记录日期字符串")
|
|
@FieldDescribe("打卡记录日期字符串")
|
|
|
- @Column( length = JpaObject.length_32B, name = ColumnNamePrefix + recordDateString_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_32B, name = ColumnNamePrefix + recordDateString_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String recordDateString;
|
|
private String recordDateString;
|
|
|
|
|
|
|
|
public static final String cycleYear_FIELDNAME = "cycleYear";
|
|
public static final String cycleYear_FIELDNAME = "cycleYear";
|
|
|
@FieldDescribe("统计周期年份")
|
|
@FieldDescribe("统计周期年份")
|
|
|
- @Column( length = JpaObject.length_16B, name = ColumnNamePrefix + cycleYear_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_16B, name = ColumnNamePrefix + cycleYear_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String cycleYear;
|
|
private String cycleYear;
|
|
|
|
|
|
|
|
public static final String cycleMonth_FIELDNAME = "cycleMonth";
|
|
public static final String cycleMonth_FIELDNAME = "cycleMonth";
|
|
|
@FieldDescribe("统计周期月份")
|
|
@FieldDescribe("统计周期月份")
|
|
|
- @Column( length = JpaObject.length_16B, name = ColumnNamePrefix + cycleMonth_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_16B, name = ColumnNamePrefix + cycleMonth_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String cycleMonth;
|
|
private String cycleMonth;
|
|
|
|
|
|
|
|
public static final String selfHolidayDayTime_FIELDNAME = "selfHolidayDayTime";
|
|
public static final String selfHolidayDayTime_FIELDNAME = "selfHolidayDayTime";
|
|
|
@FieldDescribe("请假时段:上午|下午|全天")
|
|
@FieldDescribe("请假时段:上午|下午|全天")
|
|
|
- @Column( length = JpaObject.length_32B, name = ColumnNamePrefix + selfHolidayDayTime_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_32B, name = ColumnNamePrefix + selfHolidayDayTime_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = false)
|
|
@CheckPersist(allowEmpty = false)
|
|
|
private String selfHolidayDayTime = "无";
|
|
private String selfHolidayDayTime = "无";
|
|
|
|
|
|
|
|
public static final String absentDayTime_FIELDNAME = "absentDayTime";
|
|
public static final String absentDayTime_FIELDNAME = "absentDayTime";
|
|
|
@FieldDescribe("缺勤时段:上午|下午|全天")
|
|
@FieldDescribe("缺勤时段:上午|下午|全天")
|
|
|
- @Column( length = JpaObject.length_32B, name = ColumnNamePrefix + absentDayTime_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_32B, name = ColumnNamePrefix + absentDayTime_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = false)
|
|
@CheckPersist(allowEmpty = false)
|
|
|
private String absentDayTime = "无";
|
|
private String absentDayTime = "无";
|
|
|
|
|
|
|
|
public static final String abnormalDutyDayTime_FIELDNAME = "abnormalDutyDayTime";
|
|
public static final String abnormalDutyDayTime_FIELDNAME = "abnormalDutyDayTime";
|
|
|
@FieldDescribe("异常打卡时段:上午|下午|全天")
|
|
@FieldDescribe("异常打卡时段:上午|下午|全天")
|
|
|
- @Column( length = JpaObject.length_32B, name = ColumnNamePrefix + abnormalDutyDayTime_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_32B, name = ColumnNamePrefix + abnormalDutyDayTime_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = false)
|
|
@CheckPersist(allowEmpty = false)
|
|
|
private String abnormalDutyDayTime = "无";
|
|
private String abnormalDutyDayTime = "无";
|
|
|
|
|
|
|
|
public static final String getSelfHolidayDays_FIELDNAME = "getSelfHolidayDays";
|
|
public static final String getSelfHolidayDays_FIELDNAME = "getSelfHolidayDays";
|
|
|
@FieldDescribe("休假天数: 0|0.5|1")
|
|
@FieldDescribe("休假天数: 0|0.5|1")
|
|
|
- @Column( name = ColumnNamePrefix + getSelfHolidayDays_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + getSelfHolidayDays_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = false)
|
|
@CheckPersist(allowEmpty = false)
|
|
|
private Double getSelfHolidayDays = 0.0;
|
|
private Double getSelfHolidayDays = 0.0;
|
|
|
|
|
|
|
|
public static final String onWorkTime_FIELDNAME = "onWorkTime";
|
|
public static final String onWorkTime_FIELDNAME = "onWorkTime";
|
|
|
@FieldDescribe("上班时间")
|
|
@FieldDescribe("上班时间")
|
|
|
- @Column( length = JpaObject.length_32B, name = ColumnNamePrefix + onWorkTime_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_32B, name = ColumnNamePrefix + onWorkTime_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String onWorkTime;
|
|
private String onWorkTime;
|
|
|
|
|
|
|
|
public static final String offWorkTime_FIELDNAME = "offWorkTime";
|
|
public static final String offWorkTime_FIELDNAME = "offWorkTime";
|
|
|
@FieldDescribe("下班时间")
|
|
@FieldDescribe("下班时间")
|
|
|
- @Column( length = JpaObject.length_32B, name = ColumnNamePrefix + offWorkTime_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_32B, name = ColumnNamePrefix + offWorkTime_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String offWorkTime;
|
|
private String offWorkTime;
|
|
|
|
|
|
|
|
public static final String middayRestStartTime_FIELDNAME = "middayRestStartTime";
|
|
public static final String middayRestStartTime_FIELDNAME = "middayRestStartTime";
|
|
|
@FieldDescribe("午休开始时间")
|
|
@FieldDescribe("午休开始时间")
|
|
|
- @Column( length = JpaObject.length_32B, name = ColumnNamePrefix + middayRestStartTime_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_32B, name = ColumnNamePrefix + middayRestStartTime_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String middayRestStartTime;
|
|
private String middayRestStartTime;
|
|
|
|
|
|
|
|
public static final String middayRestEndTime_FIELDNAME = "middayRestEndTime";
|
|
public static final String middayRestEndTime_FIELDNAME = "middayRestEndTime";
|
|
|
@FieldDescribe("午休结束时间")
|
|
@FieldDescribe("午休结束时间")
|
|
|
- @Column( length = JpaObject.length_32B, name = ColumnNamePrefix + middayRestEndTime_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_32B, name = ColumnNamePrefix + middayRestEndTime_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String middayRestEndTime;
|
|
private String middayRestEndTime;
|
|
|
|
|
|
|
|
public static final String onDutyTime_FIELDNAME = "onDutyTime";
|
|
public static final String onDutyTime_FIELDNAME = "onDutyTime";
|
|
|
@FieldDescribe("上班打卡签到时间")
|
|
@FieldDescribe("上班打卡签到时间")
|
|
|
- @Column( length = JpaObject.length_32B, name = ColumnNamePrefix + onDutyTime_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_32B, name = ColumnNamePrefix + onDutyTime_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String onDutyTime;
|
|
private String onDutyTime;
|
|
|
|
|
|
|
|
- public static final String morningOffdutyTime_FIELDNAME = "morningOffdutyTime";
|
|
|
|
|
|
|
+ public static final String morningOffDutyTime_FIELDNAME = "morningOffDutyTime";
|
|
|
@FieldDescribe("上班下午打卡签退时间")
|
|
@FieldDescribe("上班下午打卡签退时间")
|
|
|
- @Column( length = JpaObject.length_32B, name = ColumnNamePrefix + morningOffdutyTime_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_32B, name = ColumnNamePrefix + morningOffDutyTime_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String morningOffDutyTime;
|
|
private String morningOffDutyTime;
|
|
|
|
|
|
|
|
public static final String afternoonOnDutyTime_FIELDNAME = "afternoonOnDutyTime";
|
|
public static final String afternoonOnDutyTime_FIELDNAME = "afternoonOnDutyTime";
|
|
|
@FieldDescribe("下午上班打卡签到时间")
|
|
@FieldDescribe("下午上班打卡签到时间")
|
|
|
- @Column( length = JpaObject.length_32B, name = ColumnNamePrefix + afternoonOnDutyTime_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_32B, name = ColumnNamePrefix + afternoonOnDutyTime_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String afternoonOnDutyTime;
|
|
private String afternoonOnDutyTime;
|
|
|
|
|
|
|
|
public static final String offDutyTime_FIELDNAME = "offDutyTime";
|
|
public static final String offDutyTime_FIELDNAME = "offDutyTime";
|
|
|
@FieldDescribe("下班打卡签退时间")
|
|
@FieldDescribe("下班打卡签退时间")
|
|
|
- @Column( length = JpaObject.length_32B, name = ColumnNamePrefix + offDutyTime_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_32B, name = ColumnNamePrefix + offDutyTime_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String offDutyTime;
|
|
private String offDutyTime;
|
|
|
|
|
|
|
|
public static final String lateTimeDuration_FIELDNAME = "lateTimeDuration";
|
|
public static final String lateTimeDuration_FIELDNAME = "lateTimeDuration";
|
|
|
@FieldDescribe("迟到时长")
|
|
@FieldDescribe("迟到时长")
|
|
|
- @Column( name = ColumnNamePrefix + lateTimeDuration_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + lateTimeDuration_FIELDNAME)
|
|
|
private Long lateTimeDuration = 0L;
|
|
private Long lateTimeDuration = 0L;
|
|
|
|
|
|
|
|
public static final String leaveEarlierTimeDuration_FIELDNAME = "leaveEarlierTimeDuration";
|
|
public static final String leaveEarlierTimeDuration_FIELDNAME = "leaveEarlierTimeDuration";
|
|
|
@FieldDescribe("早退时长")
|
|
@FieldDescribe("早退时长")
|
|
|
- @Column( name = ColumnNamePrefix + leaveEarlierTimeDuration_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + leaveEarlierTimeDuration_FIELDNAME)
|
|
|
private Long leaveEarlierTimeDuration = 0L;
|
|
private Long leaveEarlierTimeDuration = 0L;
|
|
|
|
|
|
|
|
public static final String workOvertimeTimeDuration_FIELDNAME = "workOvertimeTimeDuration";
|
|
public static final String workOvertimeTimeDuration_FIELDNAME = "workOvertimeTimeDuration";
|
|
|
@FieldDescribe("加班时长")
|
|
@FieldDescribe("加班时长")
|
|
|
- @Column( name = ColumnNamePrefix + workOvertimeTimeDuration_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + workOvertimeTimeDuration_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = false)
|
|
@CheckPersist(allowEmpty = false)
|
|
|
private Long workOvertimeTimeDuration = 0L;
|
|
private Long workOvertimeTimeDuration = 0L;
|
|
|
|
|
|
|
|
public static final String workTimeDuration_FIELDNAME = "workTimeDuration";
|
|
public static final String workTimeDuration_FIELDNAME = "workTimeDuration";
|
|
|
@FieldDescribe("出勤时长")
|
|
@FieldDescribe("出勤时长")
|
|
|
- @Column( name = ColumnNamePrefix + workTimeDuration_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + workTimeDuration_FIELDNAME)
|
|
|
private Long workTimeDuration = 0L;
|
|
private Long workTimeDuration = 0L;
|
|
|
|
|
|
|
|
public static final String attendance_FIELDNAME = "attendance";
|
|
public static final String attendance_FIELDNAME = "attendance";
|
|
|
@FieldDescribe("出勤天数(0|0.5|1)")
|
|
@FieldDescribe("出勤天数(0|0.5|1)")
|
|
|
- @Column( name = ColumnNamePrefix + attendance_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + attendance_FIELDNAME)
|
|
|
private Double attendance = 1.0;
|
|
private Double attendance = 1.0;
|
|
|
|
|
|
|
|
public static final String absence_FIELDNAME = "absence";
|
|
public static final String absence_FIELDNAME = "absence";
|
|
|
@FieldDescribe("缺勤天数(0|0.5|1)")
|
|
@FieldDescribe("缺勤天数(0|0.5|1)")
|
|
|
- @Column( name = ColumnNamePrefix + absence_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + absence_FIELDNAME)
|
|
|
private Double absence = 0.0;
|
|
private Double absence = 0.0;
|
|
|
|
|
|
|
|
public static final String recordStatus_FIELDNAME = "recordStatus";
|
|
public static final String recordStatus_FIELDNAME = "recordStatus";
|
|
|
@FieldDescribe("记录状态:0-未分析 1-已分析")
|
|
@FieldDescribe("记录状态:0-未分析 1-已分析")
|
|
|
- @Column( name = ColumnNamePrefix + recordStatus_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + recordStatus_FIELDNAME)
|
|
|
private Integer recordStatus = 0;
|
|
private Integer recordStatus = 0;
|
|
|
|
|
|
|
|
public static final String batchName_FIELDNAME = "batchName";
|
|
public static final String batchName_FIELDNAME = "batchName";
|
|
|
@FieldDescribe("导入批次号:导入文件的ID")
|
|
@FieldDescribe("导入批次号:导入文件的ID")
|
|
|
- @Column( length = JpaObject.length_96B, name = ColumnNamePrefix + batchName_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_96B, name = ColumnNamePrefix + batchName_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String batchName;
|
|
private String batchName;
|
|
|
|
|
|
|
|
public static final String description_FIELDNAME = "description";
|
|
public static final String description_FIELDNAME = "description";
|
|
|
@FieldDescribe("说明备注")
|
|
@FieldDescribe("说明备注")
|
|
|
- @Column( length = JpaObject.length_255B, name = ColumnNamePrefix + description_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_255B, name = ColumnNamePrefix + description_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String description;
|
|
private String description;
|
|
|
|
|
|
|
|
public static final String appealStatus_FIELDNAME = "appealStatus";
|
|
public static final String appealStatus_FIELDNAME = "appealStatus";
|
|
|
@FieldDescribe("申诉状态:0-未申诉,1-申诉中,-1-申诉未通过,9-申诉通过")
|
|
@FieldDescribe("申诉状态:0-未申诉,1-申诉中,-1-申诉未通过,9-申诉通过")
|
|
|
- @Column( name = ColumnNamePrefix + appealStatus_FIELDNAME)
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + appealStatus_FIELDNAME)
|
|
|
private Integer appealStatus = 0;
|
|
private Integer appealStatus = 0;
|
|
|
|
|
|
|
|
public static final String appealReason_FIELDNAME = "appealReason";
|
|
public static final String appealReason_FIELDNAME = "appealReason";
|
|
|
@FieldDescribe("申诉原因")
|
|
@FieldDescribe("申诉原因")
|
|
|
- @Column( length = JpaObject.length_64B, name = ColumnNamePrefix + appealReason_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_64B, name = ColumnNamePrefix + appealReason_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String appealReason;
|
|
private String appealReason;
|
|
|
|
|
|
|
|
public static final String appealProcessor_FIELDNAME = "appealProcessor";
|
|
public static final String appealProcessor_FIELDNAME = "appealProcessor";
|
|
|
@FieldDescribe("申诉处理人")
|
|
@FieldDescribe("申诉处理人")
|
|
|
- @Column( length = JpaObject.length_255B, name = ColumnNamePrefix + appealProcessor_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_255B, name = ColumnNamePrefix + appealProcessor_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String appealProcessor;
|
|
private String appealProcessor;
|
|
|
|
|
|
|
@@ -269,105 +272,121 @@ public class AttendanceDetail extends SliceJpaObject {
|
|
|
@Lob
|
|
@Lob
|
|
|
@Basic(fetch = FetchType.EAGER)
|
|
@Basic(fetch = FetchType.EAGER)
|
|
|
@FieldDescribe("申诉具体说明")
|
|
@FieldDescribe("申诉具体说明")
|
|
|
- @Column( length = JpaObject.length_2K, name = ColumnNamePrefix + appealDescription_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_2K, name = ColumnNamePrefix + appealDescription_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String appealDescription;
|
|
private String appealDescription;
|
|
|
|
|
|
|
|
public static final String isHoliday_FIELDNAME = "isHoliday";
|
|
public static final String isHoliday_FIELDNAME = "isHoliday";
|
|
|
@FieldDescribe("是否法定节假日")
|
|
@FieldDescribe("是否法定节假日")
|
|
|
- @Column( name = ColumnNamePrefix + isHoliday_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + isHoliday_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = false)
|
|
@CheckPersist(allowEmpty = false)
|
|
|
private Boolean isHoliday = false;
|
|
private Boolean isHoliday = false;
|
|
|
|
|
|
|
|
public static final String isWorkday_FIELDNAME = "isWorkday";
|
|
public static final String isWorkday_FIELDNAME = "isWorkday";
|
|
|
@FieldDescribe("是否调休工作日")
|
|
@FieldDescribe("是否调休工作日")
|
|
|
- @Column( name = ColumnNamePrefix + isWorkday_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + isWorkday_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = false)
|
|
@CheckPersist(allowEmpty = false)
|
|
|
private Boolean isWorkday = false;
|
|
private Boolean isWorkday = false;
|
|
|
|
|
|
|
|
public static final String isGetSelfHolidays_FIELDNAME = "isGetSelfHolidays";
|
|
public static final String isGetSelfHolidays_FIELDNAME = "isGetSelfHolidays";
|
|
|
@FieldDescribe("是否休假")
|
|
@FieldDescribe("是否休假")
|
|
|
- @Column( name = ColumnNamePrefix + isGetSelfHolidays_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + isGetSelfHolidays_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = false)
|
|
@CheckPersist(allowEmpty = false)
|
|
|
private Boolean isGetSelfHolidays = false;
|
|
private Boolean isGetSelfHolidays = false;
|
|
|
|
|
|
|
|
public static final String isAbsent_FIELDNAME = "isAbsent";
|
|
public static final String isAbsent_FIELDNAME = "isAbsent";
|
|
|
@FieldDescribe("是否缺勤")
|
|
@FieldDescribe("是否缺勤")
|
|
|
- @Column( name = ColumnNamePrefix + isAbsent_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + isAbsent_FIELDNAME)
|
|
|
private Boolean isAbsent = false;
|
|
private Boolean isAbsent = false;
|
|
|
|
|
|
|
|
public static final String isAbnormalDuty_FIELDNAME = "isAbnormalDuty";
|
|
public static final String isAbnormalDuty_FIELDNAME = "isAbnormalDuty";
|
|
|
@FieldDescribe("是否异常打卡")
|
|
@FieldDescribe("是否异常打卡")
|
|
|
- @Column( name = ColumnNamePrefix + isAbnormalDuty_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + isAbnormalDuty_FIELDNAME)
|
|
|
private Boolean isAbnormalDuty = false;
|
|
private Boolean isAbnormalDuty = false;
|
|
|
|
|
|
|
|
public static final String isLackOfTime_FIELDNAME = "isLackOfTime";
|
|
public static final String isLackOfTime_FIELDNAME = "isLackOfTime";
|
|
|
@FieldDescribe("是否工时不足")
|
|
@FieldDescribe("是否工时不足")
|
|
|
- @Column( name = ColumnNamePrefix + isLackOfTime_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + isLackOfTime_FIELDNAME)
|
|
|
private Boolean isLackOfTime = false;
|
|
private Boolean isLackOfTime = false;
|
|
|
|
|
|
|
|
public static final String isWorkOvertime_FIELDNAME = "isWorkOvertime";
|
|
public static final String isWorkOvertime_FIELDNAME = "isWorkOvertime";
|
|
|
@FieldDescribe("是否加班")
|
|
@FieldDescribe("是否加班")
|
|
|
- @Column( name = ColumnNamePrefix + isWorkOvertime_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + isWorkOvertime_FIELDNAME)
|
|
|
private Boolean isWorkOvertime = false;
|
|
private Boolean isWorkOvertime = false;
|
|
|
|
|
|
|
|
public static final String isLeaveEarlier_FIELDNAME = "isLeaveEarlier";
|
|
public static final String isLeaveEarlier_FIELDNAME = "isLeaveEarlier";
|
|
|
@FieldDescribe("是否早退")
|
|
@FieldDescribe("是否早退")
|
|
|
- @Column( name = ColumnNamePrefix + isLeaveEarlier_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + isLeaveEarlier_FIELDNAME)
|
|
|
private Boolean isLeaveEarlier = false;
|
|
private Boolean isLeaveEarlier = false;
|
|
|
|
|
|
|
|
public static final String isLate_FIELDNAME = "isLate";
|
|
public static final String isLate_FIELDNAME = "isLate";
|
|
|
@FieldDescribe("是否迟到")
|
|
@FieldDescribe("是否迟到")
|
|
|
- @Column( name = ColumnNamePrefix + isLate_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + isLate_FIELDNAME)
|
|
|
private Boolean isLate = false;
|
|
private Boolean isLate = false;
|
|
|
|
|
|
|
|
public static final String isWeekend_FIELDNAME = "isWeekend";
|
|
public static final String isWeekend_FIELDNAME = "isWeekend";
|
|
|
@FieldDescribe("是否周末")
|
|
@FieldDescribe("是否周末")
|
|
|
- @Column( name = ColumnNamePrefix + isWeekend_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(name = ColumnNamePrefix + isWeekend_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = false)
|
|
@CheckPersist(allowEmpty = false)
|
|
|
private Boolean isWeekend = false;
|
|
private Boolean isWeekend = false;
|
|
|
|
|
|
|
|
public static final String archiveTime_FIELDNAME = "archiveTime";
|
|
public static final String archiveTime_FIELDNAME = "archiveTime";
|
|
|
@FieldDescribe("记录归档时间")
|
|
@FieldDescribe("记录归档时间")
|
|
|
- @Column( length = JpaObject.length_32B, name = ColumnNamePrefix + archiveTime_FIELDNAME )
|
|
|
|
|
|
|
+ @Column(length = JpaObject.length_32B, name = ColumnNamePrefix + archiveTime_FIELDNAME)
|
|
|
@CheckPersist(allowEmpty = true)
|
|
@CheckPersist(allowEmpty = true)
|
|
|
private String archiveTime;
|
|
private String archiveTime;
|
|
|
|
|
|
|
|
- public String getMorningOffDutyTime() { return morningOffDutyTime; }
|
|
|
|
|
|
|
+ public String getMorningOffDutyTime() {
|
|
|
|
|
+ return morningOffDutyTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- public void setMorningOffDutyTime(String morningOffDutyTime) { this.morningOffDutyTime = morningOffDutyTime; }
|
|
|
|
|
|
|
+ public void setMorningOffDutyTime(String morningOffDutyTime) {
|
|
|
|
|
+ this.morningOffDutyTime = morningOffDutyTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- public String getAfternoonOnDutyTime() { return afternoonOnDutyTime; }
|
|
|
|
|
|
|
+ public String getAfternoonOnDutyTime() {
|
|
|
|
|
+ return afternoonOnDutyTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- public void setAfternoonOnDutyTime(String afternoonOnDutyTime) { this.afternoonOnDutyTime = afternoonOnDutyTime; }
|
|
|
|
|
|
|
+ public void setAfternoonOnDutyTime(String afternoonOnDutyTime) {
|
|
|
|
|
+ this.afternoonOnDutyTime = afternoonOnDutyTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取是否工时不足
|
|
* 获取是否工时不足
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Boolean getIsLackOfTime() { return isLackOfTime; }
|
|
|
|
|
|
|
+ public Boolean getIsLackOfTime() {
|
|
|
|
|
+ return isLackOfTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置是否工时不足
|
|
* 设置是否工时不足
|
|
|
*
|
|
*
|
|
|
* @param isLackOfTime
|
|
* @param isLackOfTime
|
|
|
*/
|
|
*/
|
|
|
- public void setIsLackOfTime(Boolean isLackOfTime) { this.isLackOfTime = isLackOfTime; }
|
|
|
|
|
|
|
+ public void setIsLackOfTime(Boolean isLackOfTime) {
|
|
|
|
|
+ this.isLackOfTime = isLackOfTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工号(String)
|
|
* 获取员工号(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getEmpNo() { return empNo; }
|
|
|
|
|
|
|
+ public String getEmpNo() {
|
|
|
|
|
+ return empNo;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工号(String)
|
|
* 设置员工号(String)
|
|
|
*
|
|
*
|
|
|
* @param empNo
|
|
* @param empNo
|
|
|
*/
|
|
*/
|
|
|
- public void setEmpNo(String empNo) { this.empNo = empNo; }
|
|
|
|
|
|
|
+ public void setEmpNo(String empNo) {
|
|
|
|
|
+ this.empNo = empNo;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工姓名(String)
|
|
* 获取员工姓名(String)
|
|
@@ -398,515 +417,678 @@ public class AttendanceDetail extends SliceJpaObject {
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Boolean getIsLate() { return isLate; }
|
|
|
|
|
|
|
+ public Boolean getIsLate() {
|
|
|
|
|
+ return isLate;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工是否已经迟到(Integer)
|
|
* 设置员工是否已经迟到(Integer)
|
|
|
*
|
|
*
|
|
|
* @param isLate
|
|
* @param isLate
|
|
|
*/
|
|
*/
|
|
|
- public void setIsLate(Boolean isLate) { this.isLate = isLate; }
|
|
|
|
|
|
|
+ public void setIsLate(Boolean isLate) {
|
|
|
|
|
+ this.isLate = isLate;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工是否早退(Integer)
|
|
* 获取员工是否早退(Integer)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Boolean getIsLeaveEarlier() { return isLeaveEarlier; }
|
|
|
|
|
|
|
+ public Boolean getIsLeaveEarlier() {
|
|
|
|
|
+ return isLeaveEarlier;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工是否早退(Integer)
|
|
* 设置员工是否早退(Integer)
|
|
|
*
|
|
*
|
|
|
* @param isLeaveEarlier
|
|
* @param isLeaveEarlier
|
|
|
*/
|
|
*/
|
|
|
- public void setIsLeaveEarlier(Boolean isLeaveEarlier) { this.isLeaveEarlier = isLeaveEarlier; }
|
|
|
|
|
|
|
+ public void setIsLeaveEarlier(Boolean isLeaveEarlier) {
|
|
|
|
|
+ this.isLeaveEarlier = isLeaveEarlier;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工员工打卡记录日期(String)
|
|
* 获取员工员工打卡记录日期(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getRecordDateString() { return recordDateString; }
|
|
|
|
|
|
|
+ public String getRecordDateString() {
|
|
|
|
|
+ return recordDateString;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工员工打卡记录日期(String)
|
|
* 设置员工员工打卡记录日期(String)
|
|
|
*
|
|
*
|
|
|
* @param recordDateString
|
|
* @param recordDateString
|
|
|
*/
|
|
*/
|
|
|
- public void setRecordDateString(String recordDateString) { this.recordDateString = recordDateString; }
|
|
|
|
|
|
|
+ public void setRecordDateString(String recordDateString) {
|
|
|
|
|
+ this.recordDateString = recordDateString;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工员工打卡记录日期(Date)
|
|
* 获取员工员工打卡记录日期(Date)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Date getRecordDate() { return recordDate; }
|
|
|
|
|
|
|
+ public Date getRecordDate() {
|
|
|
|
|
+ return recordDate;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工员工打卡记录日期(Date)
|
|
* 设置员工员工打卡记录日期(Date)
|
|
|
*
|
|
*
|
|
|
* @param recordDate
|
|
* @param recordDate
|
|
|
*/
|
|
*/
|
|
|
- public void setRecordDate(Date recordDate) { this.recordDate = recordDate; }
|
|
|
|
|
|
|
+ public void setRecordDate(Date recordDate) {
|
|
|
|
|
+ this.recordDate = recordDate;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工打卡记录导入批次号-导入文件ID(String)
|
|
* 获取员工打卡记录导入批次号-导入文件ID(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getBatchName() { return batchName; }
|
|
|
|
|
|
|
+ public String getBatchName() {
|
|
|
|
|
+ return batchName;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工打卡记录导入批次号-导入文件ID(String)
|
|
* 设置员工打卡记录导入批次号-导入文件ID(String)
|
|
|
*
|
|
*
|
|
|
* @param batchName
|
|
* @param batchName
|
|
|
*/
|
|
*/
|
|
|
- public void setBatchName(String batchName) { this.batchName = batchName; }
|
|
|
|
|
|
|
+ public void setBatchName(String batchName) {
|
|
|
|
|
+ this.batchName = batchName;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工标准上班时间(String)
|
|
* 获取员工标准上班时间(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getOnWorkTime() { return onWorkTime; }
|
|
|
|
|
|
|
+ public String getOnWorkTime() {
|
|
|
|
|
+ return onWorkTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工标准上班时间(String)
|
|
* 设置员工标准上班时间(String)
|
|
|
*
|
|
*
|
|
|
* @param onWorkTime
|
|
* @param onWorkTime
|
|
|
*/
|
|
*/
|
|
|
- public void setOnWorkTime(String onWorkTime) { this.onWorkTime = onWorkTime; }
|
|
|
|
|
|
|
+ public void setOnWorkTime(String onWorkTime) {
|
|
|
|
|
+ this.onWorkTime = onWorkTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工标准下班时间(String)
|
|
* 获取员工标准下班时间(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getOffWorkTime() { return offWorkTime; }
|
|
|
|
|
|
|
+ public String getOffWorkTime() {
|
|
|
|
|
+ return offWorkTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工标准下班时间(String)
|
|
* 设置员工标准下班时间(String)
|
|
|
*
|
|
*
|
|
|
* @param offWorkTime
|
|
* @param offWorkTime
|
|
|
*/
|
|
*/
|
|
|
- public void setOffWorkTime(String offWorkTime) { this.offWorkTime = offWorkTime; }
|
|
|
|
|
|
|
+ public void setOffWorkTime(String offWorkTime) {
|
|
|
|
|
+ this.offWorkTime = offWorkTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工迟到时长(Long)
|
|
* 获取员工迟到时长(Long)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Long getLateTimeDuration() { return lateTimeDuration; }
|
|
|
|
|
|
|
+ public Long getLateTimeDuration() {
|
|
|
|
|
+ return lateTimeDuration;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工迟到时长(Long)
|
|
* 设置员工迟到时长(Long)
|
|
|
*
|
|
*
|
|
|
* @param lateTimeDuration
|
|
* @param lateTimeDuration
|
|
|
*/
|
|
*/
|
|
|
- public void setLateTimeDuration(Long lateTimeDuration) { this.lateTimeDuration = lateTimeDuration; }
|
|
|
|
|
|
|
+ public void setLateTimeDuration(Long lateTimeDuration) {
|
|
|
|
|
+ this.lateTimeDuration = lateTimeDuration;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工早退时长(Long)
|
|
* 获取员工早退时长(Long)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Long getLeaveEarlierTimeDuration() { return leaveEarlierTimeDuration; }
|
|
|
|
|
|
|
+ public Long getLeaveEarlierTimeDuration() {
|
|
|
|
|
+ return leaveEarlierTimeDuration;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工早退时长(Long)
|
|
* 设置员工早退时长(Long)
|
|
|
*
|
|
*
|
|
|
* @param leaveEarlierTimeDuration
|
|
* @param leaveEarlierTimeDuration
|
|
|
*/
|
|
*/
|
|
|
- public void setLeaveEarlierTimeDuration(Long leaveEarlierTimeDuration) { this.leaveEarlierTimeDuration = leaveEarlierTimeDuration; }
|
|
|
|
|
|
|
+ public void setLeaveEarlierTimeDuration(Long leaveEarlierTimeDuration) {
|
|
|
|
|
+ this.leaveEarlierTimeDuration = leaveEarlierTimeDuration;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工是否缺勤(Integer)
|
|
* 获取员工是否缺勤(Integer)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Boolean getIsAbsent() { return isAbsent; }
|
|
|
|
|
|
|
+ public Boolean getIsAbsent() {
|
|
|
|
|
+ return isAbsent;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工是否缺勤(Integer)
|
|
* 设置员工是否缺勤(Integer)
|
|
|
*
|
|
*
|
|
|
* @param isAbsent
|
|
* @param isAbsent
|
|
|
*/
|
|
*/
|
|
|
- public void setIsAbsent(Boolean isAbsent) { this.isAbsent = isAbsent; }
|
|
|
|
|
|
|
+ public void setIsAbsent(Boolean isAbsent) {
|
|
|
|
|
+ this.isAbsent = isAbsent;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工是否加班(Integer)
|
|
* 获取员工是否加班(Integer)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Boolean getIsWorkOvertime() { return isWorkOvertime; }
|
|
|
|
|
|
|
+ public Boolean getIsWorkOvertime() {
|
|
|
|
|
+ return isWorkOvertime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工是否加班(Integer)
|
|
* 设置员工是否加班(Integer)
|
|
|
*
|
|
*
|
|
|
* @param isWorkOvertime
|
|
* @param isWorkOvertime
|
|
|
*/
|
|
*/
|
|
|
- public void setIsWorkOvertime(Boolean isWorkOvertime) { this.isWorkOvertime = isWorkOvertime; }
|
|
|
|
|
|
|
+ public void setIsWorkOvertime(Boolean isWorkOvertime) {
|
|
|
|
|
+ this.isWorkOvertime = isWorkOvertime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工加班时长(Long)
|
|
* 获取员工加班时长(Long)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Long getWorkOvertimeTimeDuration() { return workOvertimeTimeDuration; }
|
|
|
|
|
|
|
+ public Long getWorkOvertimeTimeDuration() {
|
|
|
|
|
+ return workOvertimeTimeDuration;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工加班时长(Long)
|
|
* 设置员工加班时长(Long)
|
|
|
*
|
|
*
|
|
|
* @param workOvertimeTimeDuration
|
|
* @param workOvertimeTimeDuration
|
|
|
*/
|
|
*/
|
|
|
- public void setWorkOvertimeTimeDuration(Long workOvertimeTimeDuration) { this.workOvertimeTimeDuration = workOvertimeTimeDuration; }
|
|
|
|
|
|
|
+ public void setWorkOvertimeTimeDuration(Long workOvertimeTimeDuration) {
|
|
|
|
|
+ this.workOvertimeTimeDuration = workOvertimeTimeDuration;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取当天是否为法定节假日(Integer)
|
|
* 获取当天是否为法定节假日(Integer)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Boolean getIsHoliday() { return isHoliday; }
|
|
|
|
|
|
|
+ public Boolean getIsHoliday() {
|
|
|
|
|
+ return isHoliday;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置当天是否为法定节假日(Integer)
|
|
* 设置当天是否为法定节假日(Integer)
|
|
|
*
|
|
*
|
|
|
* @param isHoliday
|
|
* @param isHoliday
|
|
|
*/
|
|
*/
|
|
|
- public void setIsHoliday(Boolean isHoliday) { this.isHoliday = isHoliday; }
|
|
|
|
|
|
|
+ public void setIsHoliday(Boolean isHoliday) {
|
|
|
|
|
+ this.isHoliday = isHoliday;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工出勤时长(分钟)(Long)
|
|
* 获取员工出勤时长(分钟)(Long)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Long getWorkTimeDuration() { return workTimeDuration; }
|
|
|
|
|
|
|
+ public Long getWorkTimeDuration() {
|
|
|
|
|
+ return workTimeDuration;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工出勤时长(分钟)(Long)
|
|
* 设置员工出勤时长(分钟)(Long)
|
|
|
*
|
|
*
|
|
|
* @param workTimeDuration
|
|
* @param workTimeDuration
|
|
|
*/
|
|
*/
|
|
|
- public void setWorkTimeDuration(Long workTimeDuration) { this.workTimeDuration = workTimeDuration; }
|
|
|
|
|
|
|
+ public void setWorkTimeDuration(Long workTimeDuration) {
|
|
|
|
|
+ this.workTimeDuration = workTimeDuration;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工出勤天数(0,0.5,1)(Double)
|
|
* 获取员工出勤天数(0,0.5,1)(Double)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Double getAttendance() { return attendance; }
|
|
|
|
|
|
|
+ public Double getAttendance() {
|
|
|
|
|
+ return attendance;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工出勤天数(0,0.5,1)(Double)
|
|
* 设置员工出勤天数(0,0.5,1)(Double)
|
|
|
*
|
|
*
|
|
|
* @param attendance
|
|
* @param attendance
|
|
|
*/
|
|
*/
|
|
|
- public void setAttendance(Double attendance) { this.attendance = attendance; }
|
|
|
|
|
|
|
+ public void setAttendance(Double attendance) {
|
|
|
|
|
+ this.attendance = attendance;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工上班打卡时间(String)
|
|
* 获取员工上班打卡时间(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getOnDutyTime() { return onDutyTime; }
|
|
|
|
|
|
|
+ public String getOnDutyTime() {
|
|
|
|
|
+ return onDutyTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工上班打卡时间(String)
|
|
* 设置员工上班打卡时间(String)
|
|
|
*
|
|
*
|
|
|
* @param onDutyTime
|
|
* @param onDutyTime
|
|
|
*/
|
|
*/
|
|
|
- public void setOnDutyTime(String onDutyTime) { this.onDutyTime = onDutyTime; }
|
|
|
|
|
|
|
+ public void setOnDutyTime(String onDutyTime) {
|
|
|
|
|
+ this.onDutyTime = onDutyTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工下班打卡时间(String)
|
|
* 获取员工下班打卡时间(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getOffDutyTime() { return offDutyTime; }
|
|
|
|
|
|
|
+ public String getOffDutyTime() {
|
|
|
|
|
+ return offDutyTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工下班打卡时间(String)
|
|
* 设置员工下班打卡时间(String)
|
|
|
*
|
|
*
|
|
|
* @param offDutyTime
|
|
* @param offDutyTime
|
|
|
*/
|
|
*/
|
|
|
- public void setOffDutyTime(String offDutyTime) { this.offDutyTime = offDutyTime; }
|
|
|
|
|
|
|
+ public void setOffDutyTime(String offDutyTime) {
|
|
|
|
|
+ this.offDutyTime = offDutyTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工打卡记录分析状态:0-未分析 1-已分析 -1-分析有错误(String)
|
|
* 获取员工打卡记录分析状态:0-未分析 1-已分析 -1-分析有错误(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Integer getRecordStatus() { return recordStatus; }
|
|
|
|
|
|
|
+ public Integer getRecordStatus() {
|
|
|
|
|
+ return recordStatus;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工打卡记录分析状态:0-未分析 1-已分析 -1-分析有错误(String)
|
|
* 设置员工打卡记录分析状态:0-未分析 1-已分析 -1-分析有错误(String)
|
|
|
*
|
|
*
|
|
|
* @param recordStatus
|
|
* @param recordStatus
|
|
|
*/
|
|
*/
|
|
|
- public void setRecordStatus(Integer recordStatus) { this.recordStatus = recordStatus; }
|
|
|
|
|
|
|
+ public void setRecordStatus(Integer recordStatus) {
|
|
|
|
|
+ this.recordStatus = recordStatus;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工打卡当天是否调休的工作日(String)
|
|
* 获取员工打卡当天是否调休的工作日(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Boolean getIsWorkday() { return isWorkday; }
|
|
|
|
|
|
|
+ public Boolean getIsWorkday() {
|
|
|
|
|
+ return isWorkday;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工打卡当天是否调休的工作日(String)
|
|
* 设置员工打卡当天是否调休的工作日(String)
|
|
|
*
|
|
*
|
|
|
* @param isWorkday
|
|
* @param isWorkday
|
|
|
*/
|
|
*/
|
|
|
- public void setIsWorkday(Boolean isWorkday) { this.isWorkday = isWorkday; }
|
|
|
|
|
|
|
+ public void setIsWorkday(Boolean isWorkday) {
|
|
|
|
|
+ this.isWorkday = isWorkday;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工打卡当天是否周末(String)
|
|
* 获取员工打卡当天是否周末(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Boolean getIsWeekend() { return isWeekend; }
|
|
|
|
|
|
|
+ public Boolean getIsWeekend() {
|
|
|
|
|
+ return isWeekend;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工打卡当天是否周末(String)
|
|
* 设置员工打卡当天是否周末(String)
|
|
|
*
|
|
*
|
|
|
* @param isWeekend
|
|
* @param isWeekend
|
|
|
*/
|
|
*/
|
|
|
- public void setIsWeekend(Boolean isWeekend) { this.isWeekend = isWeekend; }
|
|
|
|
|
|
|
+ public void setIsWeekend(Boolean isWeekend) {
|
|
|
|
|
+ this.isWeekend = isWeekend;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工打卡记录分析处理说明:系统分析时自动填写(String)
|
|
* 获取员工打卡记录分析处理说明:系统分析时自动填写(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getDescription() { return description; }
|
|
|
|
|
|
|
+ public String getDescription() {
|
|
|
|
|
+ return description;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工打卡记录分析处理说明:系统分析时自动填写(String)
|
|
* 设置员工打卡记录分析处理说明:系统分析时自动填写(String)
|
|
|
*
|
|
*
|
|
|
* @param description
|
|
* @param description
|
|
|
*/
|
|
*/
|
|
|
- public void setDescription(String description) { this.description = description; }
|
|
|
|
|
|
|
+ public void setDescription(String description) {
|
|
|
|
|
+ this.description = description;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工所属顶层组织名称(String)
|
|
* 获取员工所属顶层组织名称(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getTopUnitName() { return topUnitName; }
|
|
|
|
|
|
|
+ public String getTopUnitName() {
|
|
|
|
|
+ return topUnitName;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工所属顶层组织名称(String)
|
|
* 设置员工所属顶层组织名称(String)
|
|
|
*
|
|
*
|
|
|
* @param topUnitName
|
|
* @param topUnitName
|
|
|
*/
|
|
*/
|
|
|
- public void setTopUnitName(String topUnitName) { this.topUnitName = topUnitName; }
|
|
|
|
|
|
|
+ public void setTopUnitName(String topUnitName) {
|
|
|
|
|
+ this.topUnitName = topUnitName;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工所属组织名称(String)
|
|
* 获取员工所属组织名称(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getUnitName() { return unitName; }
|
|
|
|
|
|
|
+ public String getUnitName() {
|
|
|
|
|
+ return unitName;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工所属组织名称(String)
|
|
* 设置员工所属组织名称(String)
|
|
|
*
|
|
*
|
|
|
* @param unitName
|
|
* @param unitName
|
|
|
*/
|
|
*/
|
|
|
- public void setUnitName(String unitName) { this.unitName = unitName; }
|
|
|
|
|
|
|
+ public void setUnitName(String unitName) {
|
|
|
|
|
+ this.unitName = unitName;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工打卡记录所在年份(String)
|
|
* 获取员工打卡记录所在年份(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getYearString() { return yearString; }
|
|
|
|
|
|
|
+ public String getYearString() {
|
|
|
|
|
+ return yearString;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工打卡记录所在年份(String)
|
|
* 设置员工打卡记录所在年份(String)
|
|
|
*
|
|
*
|
|
|
* @param yearString
|
|
* @param yearString
|
|
|
*/
|
|
*/
|
|
|
- public void setYearString(String yearString) { this.yearString = yearString; }
|
|
|
|
|
|
|
+ public void setYearString(String yearString) {
|
|
|
|
|
+ this.yearString = yearString;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工打卡记录所在月份(String)
|
|
* 获取员工打卡记录所在月份(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getMonthString() { return monthString; }
|
|
|
|
|
|
|
+ public String getMonthString() {
|
|
|
|
|
+ return monthString;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工打卡记录所在月份(String)
|
|
* 设置员工打卡记录所在月份(String)
|
|
|
*
|
|
*
|
|
|
* @param monthString
|
|
* @param monthString
|
|
|
*/
|
|
*/
|
|
|
- public void setMonthString(String monthString) { this.monthString = monthString; }
|
|
|
|
|
|
|
+ public void setMonthString(String monthString) {
|
|
|
|
|
+ this.monthString = monthString;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工是否处于休假中(Integer)
|
|
* 获取员工是否处于休假中(Integer)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Boolean getIsGetSelfHolidays() { return isGetSelfHolidays; }
|
|
|
|
|
|
|
+ public Boolean getIsGetSelfHolidays() {
|
|
|
|
|
+ return isGetSelfHolidays;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工是否处于休假中(Integer)
|
|
* 设置员工是否处于休假中(Integer)
|
|
|
*
|
|
*
|
|
|
* @param isGetSelfHolidays
|
|
* @param isGetSelfHolidays
|
|
|
*/
|
|
*/
|
|
|
- public void setIsGetSelfHolidays(Boolean isGetSelfHolidays) { this.isGetSelfHolidays = isGetSelfHolidays; }
|
|
|
|
|
|
|
+ public void setIsGetSelfHolidays(Boolean isGetSelfHolidays) {
|
|
|
|
|
+ this.isGetSelfHolidays = isGetSelfHolidays;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取休假时段:无,上午,下午,全天(String)
|
|
* 获取休假时段:无,上午,下午,全天(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getSelfHolidayDayTime() { return selfHolidayDayTime; }
|
|
|
|
|
|
|
+ public String getSelfHolidayDayTime() {
|
|
|
|
|
+ return selfHolidayDayTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置休假时段:无,上午,下午,全天(String)
|
|
* 设置休假时段:无,上午,下午,全天(String)
|
|
|
*
|
|
*
|
|
|
* @param selfHolidayDayTime
|
|
* @param selfHolidayDayTime
|
|
|
*/
|
|
*/
|
|
|
- public void setSelfHolidayDayTime(String selfHolidayDayTime) { this.selfHolidayDayTime = selfHolidayDayTime; }
|
|
|
|
|
|
|
+ public void setSelfHolidayDayTime(String selfHolidayDayTime) {
|
|
|
|
|
+ this.selfHolidayDayTime = selfHolidayDayTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工休假天数:0,0.5,1(String)
|
|
* 获取员工休假天数:0,0.5,1(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Double getGetSelfHolidayDays() { return getSelfHolidayDays; }
|
|
|
|
|
|
|
+ public Double getGetSelfHolidayDays() {
|
|
|
|
|
+ return getSelfHolidayDays;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工休假天数:0,0.5,1(String)
|
|
* 设置员工休假天数:0,0.5,1(String)
|
|
|
*
|
|
*
|
|
|
* @param getSelfHolidayDays
|
|
* @param getSelfHolidayDays
|
|
|
*/
|
|
*/
|
|
|
- public void setGetSelfHolidayDays(Double getSelfHolidayDays) { this.getSelfHolidayDays = getSelfHolidayDays; }
|
|
|
|
|
|
|
+ public void setGetSelfHolidayDays(Double getSelfHolidayDays) {
|
|
|
|
|
+ this.getSelfHolidayDays = getSelfHolidayDays;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工缺勤天数:0,0.5,1(String)
|
|
* 获取员工缺勤天数:0,0.5,1(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Double getAbsence() { return absence; }
|
|
|
|
|
|
|
+ public Double getAbsence() {
|
|
|
|
|
+ return absence;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工缺勤天数:0,0.5,1(String)
|
|
* 设置员工缺勤天数:0,0.5,1(String)
|
|
|
*
|
|
*
|
|
|
* @param absence
|
|
* @param absence
|
|
|
*/
|
|
*/
|
|
|
- public void setAbsence(Double absence) { this.absence = absence; }
|
|
|
|
|
|
|
+ public void setAbsence(Double absence) {
|
|
|
|
|
+ this.absence = absence;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工打卡记录分析结果申诉状态:0-未申诉,1-申诉中,-1-申诉未通过,9-申诉通过
|
|
* 获取员工打卡记录分析结果申诉状态:0-未申诉,1-申诉中,-1-申诉未通过,9-申诉通过
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Integer getAppealStatus() { return appealStatus; }
|
|
|
|
|
|
|
+ public Integer getAppealStatus() {
|
|
|
|
|
+ return appealStatus;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工打卡记录分析结果申诉状态:0-未申诉,1-申诉中,-1-申诉未通过,9-申诉通过
|
|
* 获取员工打卡记录分析结果申诉状态:0-未申诉,1-申诉中,-1-申诉未通过,9-申诉通过
|
|
|
*
|
|
*
|
|
|
* @param appealStatus
|
|
* @param appealStatus
|
|
|
*/
|
|
*/
|
|
|
- public void setAppealStatus(Integer appealStatus) { this.appealStatus = appealStatus; }
|
|
|
|
|
|
|
+ public void setAppealStatus(Integer appealStatus) {
|
|
|
|
|
+ this.appealStatus = appealStatus;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工打卡记录分析结果申诉简要理由(String)
|
|
* 获取员工打卡记录分析结果申诉简要理由(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getAppealReason() { return appealReason; }
|
|
|
|
|
|
|
+ public String getAppealReason() {
|
|
|
|
|
+ return appealReason;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工打卡记录分析结果申诉简要理由(String)
|
|
* 设置员工打卡记录分析结果申诉简要理由(String)
|
|
|
*
|
|
*
|
|
|
* @param appealReason
|
|
* @param appealReason
|
|
|
*/
|
|
*/
|
|
|
- public void setAppealReason(String appealReason) { this.appealReason = appealReason; }
|
|
|
|
|
|
|
+ public void setAppealReason(String appealReason) {
|
|
|
|
|
+ this.appealReason = appealReason;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工打卡记录分析结果申诉详细理由(String)
|
|
* 获取员工打卡记录分析结果申诉详细理由(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getAppealDescription() { return appealDescription; }
|
|
|
|
|
|
|
+ public String getAppealDescription() {
|
|
|
|
|
+ return appealDescription;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工打卡记录分析结果申诉详细理由(String)
|
|
* 设置员工打卡记录分析结果申诉详细理由(String)
|
|
|
*
|
|
*
|
|
|
* @param appealDescription
|
|
* @param appealDescription
|
|
|
*/
|
|
*/
|
|
|
- public void setAppealDescription(String appealDescription) { this.appealDescription = appealDescription; }
|
|
|
|
|
|
|
+ public void setAppealDescription(String appealDescription) {
|
|
|
|
|
+ this.appealDescription = appealDescription;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工缺勤时段:无,上午,下午,全天(String)
|
|
* 获取员工缺勤时段:无,上午,下午,全天(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getAbsentDayTime() { return absentDayTime; }
|
|
|
|
|
|
|
+ public String getAbsentDayTime() {
|
|
|
|
|
+ return absentDayTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工缺勤时段:无,上午,下午,全天(String)
|
|
* 设置员工缺勤时段:无,上午,下午,全天(String)
|
|
|
*
|
|
*
|
|
|
* @param absentDayTime
|
|
* @param absentDayTime
|
|
|
*/
|
|
*/
|
|
|
- public void setAbsentDayTime(String absentDayTime) { this.absentDayTime = absentDayTime; }
|
|
|
|
|
|
|
+ public void setAbsentDayTime(String absentDayTime) {
|
|
|
|
|
+ this.absentDayTime = absentDayTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工打卡异常时段:无,上午,下午,全天(String)
|
|
* 获取员工打卡异常时段:无,上午,下午,全天(String)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public String getAbnormalDutyDayTime() { return abnormalDutyDayTime; }
|
|
|
|
|
|
|
+ public String getAbnormalDutyDayTime() {
|
|
|
|
|
+ return abnormalDutyDayTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工打卡异常时段:无,上午,下午,全天(String)
|
|
* 设置员工打卡异常时段:无,上午,下午,全天(String)
|
|
|
*
|
|
*
|
|
|
* @param abnormalDutyDayTime
|
|
* @param abnormalDutyDayTime
|
|
|
*/
|
|
*/
|
|
|
- public void setAbnormalDutyDayTime(String abnormalDutyDayTime) { this.abnormalDutyDayTime = abnormalDutyDayTime; }
|
|
|
|
|
|
|
+ public void setAbnormalDutyDayTime(String abnormalDutyDayTime) {
|
|
|
|
|
+ this.abnormalDutyDayTime = abnormalDutyDayTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 获取员工是否打卡异常(Integer)
|
|
* 获取员工是否打卡异常(Integer)
|
|
|
*
|
|
*
|
|
|
* @return
|
|
* @return
|
|
|
*/
|
|
*/
|
|
|
- public Boolean getIsAbnormalDuty() { return isAbnormalDuty; }
|
|
|
|
|
|
|
+ public Boolean getIsAbnormalDuty() {
|
|
|
|
|
+ return isAbnormalDuty;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
|
* 设置员工是否打卡异常(Integer)
|
|
* 设置员工是否打卡异常(Integer)
|
|
|
*
|
|
*
|
|
|
* @param isAbnormalDuty
|
|
* @param isAbnormalDuty
|
|
|
*/
|
|
*/
|
|
|
- public void setIsAbnormalDuty(Boolean isAbnormalDuty) { this.isAbnormalDuty = isAbnormalDuty; }
|
|
|
|
|
-
|
|
|
|
|
- public String getCycleYear() { return cycleYear; }
|
|
|
|
|
|
|
+ public void setIsAbnormalDuty(Boolean isAbnormalDuty) {
|
|
|
|
|
+ this.isAbnormalDuty = isAbnormalDuty;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- public void setCycleYear(String cycleYear) { this.cycleYear = cycleYear; }
|
|
|
|
|
|
|
+ public String getCycleYear() {
|
|
|
|
|
+ return cycleYear;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- public String getCycleMonth() { return cycleMonth; }
|
|
|
|
|
|
|
+ public void setCycleYear(String cycleYear) {
|
|
|
|
|
+ this.cycleYear = cycleYear;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- public void setCycleMonth(String cycleMonth) { this.cycleMonth = cycleMonth; }
|
|
|
|
|
|
|
+ public String getCycleMonth() {
|
|
|
|
|
+ return cycleMonth;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- public String getArchiveTime() { return archiveTime; }
|
|
|
|
|
|
|
+ public void setCycleMonth(String cycleMonth) {
|
|
|
|
|
+ this.cycleMonth = cycleMonth;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- public void setArchiveTime(String archiveTime) { this.archiveTime = archiveTime; }
|
|
|
|
|
|
|
+ public String getArchiveTime() {
|
|
|
|
|
+ return archiveTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- public String getAppealProcessor() { return appealProcessor; }
|
|
|
|
|
|
|
+ public void setArchiveTime(String archiveTime) {
|
|
|
|
|
+ this.archiveTime = archiveTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- public void setAppealProcessor(String appealProcessor) { this.appealProcessor = appealProcessor; }
|
|
|
|
|
|
|
+ public String getAppealProcessor() {
|
|
|
|
|
+ return appealProcessor;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
|
|
+ public void setAppealProcessor(String appealProcessor) {
|
|
|
|
|
+ this.appealProcessor = appealProcessor;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- public String getMiddayRestStartTime() { return middayRestStartTime; }
|
|
|
|
|
|
|
+ public String getMiddayRestStartTime() {
|
|
|
|
|
+ return middayRestStartTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- public void setMiddayRestStartTime(String middayRestStartTime) { this.middayRestStartTime = middayRestStartTime; }
|
|
|
|
|
|
|
+ public void setMiddayRestStartTime(String middayRestStartTime) {
|
|
|
|
|
+ this.middayRestStartTime = middayRestStartTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- public String getMiddayRestEndTime() { return middayRestEndTime; }
|
|
|
|
|
|
|
+ public String getMiddayRestEndTime() {
|
|
|
|
|
+ return middayRestEndTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
- public void setMiddayRestEndTime(String middayRestEndTime) { this.middayRestEndTime = middayRestEndTime; }
|
|
|
|
|
|
|
+ public void setMiddayRestEndTime(String middayRestEndTime) {
|
|
|
|
|
+ this.middayRestEndTime = middayRestEndTime;
|
|
|
|
|
+ }
|
|
|
|
|
|
|
|
public Boolean getHoliday() {
|
|
public Boolean getHoliday() {
|
|
|
return isHoliday;
|
|
return isHoliday;
|