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

116 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.Collection;
import java.util.Date;
/**
* 薪资账套薪资项目
* <p>Copyright: Copyright (c) 2022</p>
* <p>Company: 泛微软件</p>
*
* @author qiantao
* @version 1.0
**/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
//hrsa_salary_sob_item
public class SalarySobItemPO {
/**
* 主键id
*/
private Long id;
/**
* 薪资账套的id
*/
private Long salarySobId;
/**
* 所得项目
*/
private String incomeCategory;
/**
* 薪资项目的id
*/
private Long salaryItemId;
/**
* 薪资项目的code
*/
private String salaryItemCode;
/**
* 薪资账套薪资项目分组id
*/
private Long salarySobItemGroupId;
/**
* 公式
*/
private Long formulaId;
/**
* 排序字段
*/
private Integer sortedIndex;
/**
* 备注
*/
private String description;
/**
* 是否可以删除。0不可删除、1可以删除
*/
private Integer canDelete;
/**
* 租户key
*/
private String tenantKey;
/**
* 创建人id
*/
private Long creator;
/**
* 是否删除
*/
private Integer deleteType;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新时间
*/
private Date updateTime;
//该分类是否隐藏0不隐藏1隐藏
private Long itemHide;
//in
Collection<Long> ids;
Collection<Long> salarySobIds;
Collection<Long> salaryItemIds;
Collection<Long> notInSalaryItemIds;
}