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

83 lines
1.7 KiB
Java
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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