Merge remote-tracking branch 'origin/feature/qt' into develop

This commit is contained in:
钱涛 2022-03-11 13:20:17 +08:00
commit 2ba52fe82b
3 changed files with 12 additions and 12 deletions

View File

@ -14,7 +14,7 @@ import java.util.Date;
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class AttendQuote {
public class AttendQuotePO {
/**
* 主键
*/

View File

@ -1,4 +1,4 @@
package com.engine.salary.entity.datacollection.po;
package com.engine.salary.entity.salarysob.po;
import lombok.AllArgsConstructor;
import lombok.Builder;
@ -14,7 +14,7 @@ import java.util.Date;
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class SalarySob {
public class SalarySobPO {
/**
* 主键id
*/
@ -26,35 +26,35 @@ public class SalarySob {
/**
* 应税项目1:正常工资薪金所得
*/
private Byte incomeCategory;
private Integer incomeCategory;
/**
* 薪资周期1:上上月2:上月3:本月4:下月
*/
private Byte salaryCycleType;
private Integer salaryCycleType;
/**
* 薪资周期的起始日期
*/
private Byte salaryCycleFromDay;
private Integer salaryCycleFromDay;
/**
* 税款所属期1:上上月2:上月3:本月4:下月
*/
private Byte taxCycleType;
private Integer taxCycleType;
/**
* 考勤周期1:上上月2:上月3:本月4:下月
*/
private Byte attendCycleType;
private Integer attendCycleType;
/**
* 考勤周期的起始日期
*/
private Byte attendCycleFromDay;
private Integer attendCycleFromDay;
/**
* 社保福利所属期1:上上月2:上月3:本月4:下月
*/
private Byte socialSecurityCycleType;
private Integer socialSecurityCycleType;
/**
* 是否禁用0正常使用1禁用
*/
private Byte disable;
private Integer disable;
/**
* 描述
*/

View File

@ -17,7 +17,7 @@
from hrmresource e
where e.status not in (7)
<if test="collection != null and collection.size()>0">
AND d.id IN
AND t.id IN
<foreach collection="collection" open="(" item="id" separator="," close=")">
#{id}
</foreach>