weaver-hrm-salary/src/com/engine/salary/entity/salarysob/po/SalarySobPO.java

96 lines
1.9 KiB
Java
Raw Normal View History

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
}