Merge remote-tracking branch 'origin/master'
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run
This commit is contained in:
commit
b1fb876181
@ -42,5 +42,7 @@ public class AttendanceScheduleCycle extends TenantEntity {
|
||||
*/
|
||||
private Long isRest;
|
||||
|
||||
private Long scheduleId;
|
||||
|
||||
|
||||
}
|
||||
|
@ -42,5 +42,7 @@ public class AttendanceWeekSet extends TenantEntity {
|
||||
*/
|
||||
private Integer isRest;
|
||||
|
||||
private Long shiftId;
|
||||
|
||||
|
||||
}
|
||||
|
@ -47,10 +47,6 @@ public class AttendanceGroupBo extends BaseEntity {
|
||||
*/
|
||||
private Long attendanceType;
|
||||
|
||||
/**
|
||||
*前端传班次id
|
||||
*/
|
||||
private Long shiftId;
|
||||
|
||||
|
||||
List<AttendanceScheduleCycle> numList;
|
||||
|
@ -169,7 +169,7 @@ public class AttendanceGroupServiceImpl implements IAttendanceGroupService {
|
||||
//向中间表插入周期的id
|
||||
AttendanceWeeksetShift attendanceWeeksetShift = new AttendanceWeeksetShift();
|
||||
attendanceWeeksetShift.setWeekSetId(weekSetId);
|
||||
attendanceWeeksetShift.setShiftId(bo.getShiftId());
|
||||
attendanceWeeksetShift.setShiftId(weekSet.getShiftId());
|
||||
attendanceWeeksetShiftMapper.insert(attendanceWeeksetShift);
|
||||
}
|
||||
);
|
||||
@ -202,7 +202,7 @@ public class AttendanceGroupServiceImpl implements IAttendanceGroupService {
|
||||
//向中间表插入周期的id
|
||||
AttendanceWeeksetShift attendanceWeeksetShift = new AttendanceWeeksetShift();
|
||||
attendanceWeeksetShift.setWeekSetId(scheduleId);
|
||||
attendanceWeeksetShift.setShiftId(bo.getShiftId());
|
||||
attendanceWeeksetShift.setShiftId(num.getScheduleId());
|
||||
attendanceWeeksetShiftMapper.insert(attendanceWeeksetShift);
|
||||
}
|
||||
);
|
||||
|
Loading…
Reference in New Issue
Block a user