package com.engine.salary.entity.datacollection.po; import lombok.AllArgsConstructor; import lombok.Builder; import lombok.Data; import lombok.NoArgsConstructor; import java.util.Date; /** * 薪资帐套表 */ @Data @Builder @NoArgsConstructor @AllArgsConstructor public class SalarySob { /** * 主键id */ private Long id; /** * 名称 */ private String name; /** * 应税项目。1:正常工资薪金所得 */ private Byte incomeCategory; /** * 薪资周期。1:上上月、2:上月、3:本月、4:下月 */ private Byte salaryCycleType; /** * 薪资周期的起始日期 */ private Byte salaryCycleFromDay; /** * 税款所属期。1:上上月、2:上月、3:本月、4:下月 */ private Byte taxCycleType; /** * 考勤周期。1:上上月、2:上月、3:本月、4:下月 */ private Byte attendCycleType; /** * 考勤周期的起始日期 */ private Byte attendCycleFromDay; /** * 社保福利所属期。1:上上月、2:上月、3:本月、4:下月 */ private Byte socialSecurityCycleType; /** * 是否禁用。0:正常使用、1:禁用 */ private Byte disable; /** * 描述 */ private String description; /** * 创建人 */ private Long creator; /** * 创建时间 */ private Date createTime; /** * 更新时间 */ private Date updateTime; /** * 是否已删除。0:未删除、1:已删除 */ private Integer deleteType; /** * 租户ID */ private String tenantKey; }