备份
This commit is contained in:
@@ -56,5 +56,10 @@ public class OaSalaryBo extends BaseEntity {
|
||||
*/
|
||||
private String remark;
|
||||
|
||||
/** 以下二参数是用来分析材料并且计算的 */
|
||||
private String monthStr;
|
||||
|
||||
private String filePath;
|
||||
|
||||
|
||||
}
|
||||
|
||||
@@ -0,0 +1,59 @@
|
||||
package com.ruoyi.oa.domain.vo;
|
||||
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
public class CalcResultVo {
|
||||
|
||||
/** 迟到次数 */
|
||||
private Long lateCount;
|
||||
|
||||
/** 早退十分钟次数 */
|
||||
private Long leaveEarly10Count;
|
||||
|
||||
/** 早退30分钟次数 */
|
||||
private Long leaveEarly30Count;
|
||||
|
||||
/** 旷工次数 */
|
||||
private Long absentCount;
|
||||
|
||||
/** 旷工半天次数 */
|
||||
private Long absent05Count;
|
||||
|
||||
/** 未打卡次数 */
|
||||
private Long notAttendance;
|
||||
|
||||
/** 迟到日期 */
|
||||
private List<String> lateDates;
|
||||
|
||||
/** 早退10分钟日期 */
|
||||
private List<String> leaveEarly10Dates;
|
||||
|
||||
/** 早退30分钟日期 */
|
||||
private List<String> leaveEarly30Dates;
|
||||
|
||||
/** 矿工日期 */
|
||||
private List<String> absentDates;
|
||||
|
||||
/** 矿工半天日期 */
|
||||
private List<String> absent05Dates;
|
||||
|
||||
/** 未打卡日期 */
|
||||
private List<String> notAttendanceDates;
|
||||
|
||||
/** 迟到罚金 */
|
||||
private Long lateFee;
|
||||
|
||||
/** 早退罚金 */
|
||||
private Long leaveEarlyFee;
|
||||
|
||||
/** 打卡罚金 */
|
||||
private Long notAttendanceFee;
|
||||
|
||||
/** 综合罚金 */
|
||||
private Long sumFee;
|
||||
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user