2022-03-11 13:20:00 +08:00
|
|
|
|
package com.engine.salary.entity.salarysob.po;
|
2022-03-11 11:08:50 +08:00
|
|
|
|
|
|
|
|
|
|
import lombok.AllArgsConstructor;
|
|
|
|
|
|
import lombok.Builder;
|
|
|
|
|
|
import lombok.Data;
|
|
|
|
|
|
import lombok.NoArgsConstructor;
|
2022-03-22 21:01:38 +08:00
|
|
|
|
import lombok.experimental.Accessors;
|
2022-03-11 11:08:50 +08:00
|
|
|
|
|
2022-03-22 21:01:38 +08:00
|
|
|
|
import java.util.Collection;
|
2022-03-11 11:08:50 +08:00
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 薪资帐套表
|
|
|
|
|
|
*/
|
|
|
|
|
|
@Data
|
|
|
|
|
|
@Builder
|
2022-03-22 21:01:38 +08:00
|
|
|
|
@Accessors(chain = true)
|
2022-03-11 11:08:50 +08:00
|
|
|
|
@NoArgsConstructor
|
|
|
|
|
|
@AllArgsConstructor
|
2022-03-22 21:01:38 +08:00
|
|
|
|
//hrsa_salary_sob
|
2022-03-11 13:20:00 +08:00
|
|
|
|
public class SalarySobPO {
|
2022-03-11 11:08:50 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 主键id
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Long id;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 名称
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String name;
|
2022-05-26 11:02:55 +08:00
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 个税扣缴义务人的主键id
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Long taxAgentId;
|
|
|
|
|
|
|
2022-03-11 11:08:50 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 应税项目。1:正常工资薪金所得
|
|
|
|
|
|
*/
|
2022-03-11 13:20:00 +08:00
|
|
|
|
private Integer incomeCategory;
|
2022-03-11 11:08:50 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 薪资周期。1:上上月、2:上月、3:本月、4:下月
|
|
|
|
|
|
*/
|
2022-03-11 13:20:00 +08:00
|
|
|
|
private Integer salaryCycleType;
|
2022-03-11 11:08:50 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 薪资周期的起始日期
|
|
|
|
|
|
*/
|
2022-03-11 13:20:00 +08:00
|
|
|
|
private Integer salaryCycleFromDay;
|
2022-03-11 11:08:50 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 税款所属期。1:上上月、2:上月、3:本月、4:下月
|
|
|
|
|
|
*/
|
2022-03-11 13:20:00 +08:00
|
|
|
|
private Integer taxCycleType;
|
2022-03-11 11:08:50 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 考勤周期。1:上上月、2:上月、3:本月、4:下月
|
|
|
|
|
|
*/
|
2022-03-11 13:20:00 +08:00
|
|
|
|
private Integer attendCycleType;
|
2022-03-11 11:08:50 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 考勤周期的起始日期
|
|
|
|
|
|
*/
|
2022-03-11 13:20:00 +08:00
|
|
|
|
private Integer attendCycleFromDay;
|
2022-03-11 11:08:50 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 社保福利所属期。1:上上月、2:上月、3:本月、4:下月
|
|
|
|
|
|
*/
|
2022-03-11 13:20:00 +08:00
|
|
|
|
private Integer socialSecurityCycleType;
|
2022-03-11 11:08:50 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 是否禁用。0:正常使用、1:禁用
|
|
|
|
|
|
*/
|
2022-03-11 13:20:00 +08:00
|
|
|
|
private Integer disable;
|
2022-03-11 11:08:50 +08:00
|
|
|
|
/**
|
|
|
|
|
|
* 描述
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String description;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 创建人
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Long creator;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 创建时间
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Date createTime;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 更新时间
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Date updateTime;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 是否已删除。0:未删除、1:已删除
|
|
|
|
|
|
*/
|
|
|
|
|
|
private Integer deleteType;
|
|
|
|
|
|
/**
|
|
|
|
|
|
* 租户ID
|
|
|
|
|
|
*/
|
|
|
|
|
|
private String tenantKey;
|
|
|
|
|
|
|
2022-03-22 21:01:38 +08:00
|
|
|
|
Collection<Long> ids;
|
2022-05-26 11:02:55 +08:00
|
|
|
|
Collection<Long> taxAgentIds;
|
2022-03-22 21:01:38 +08:00
|
|
|
|
|
2022-03-11 11:08:50 +08:00
|
|
|
|
}
|