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

72 lines
1.1 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;
/**
* @Description hrsa_salary_item_hide 薪资项目是否在薪资核算中展示
* @author Harryxzy
* @date 2022/8/22 18:00
*/
@Data
@Builder
@NoArgsConstructor
@AllArgsConstructor
public class SalarySobItemHidePO {
/**
* ID
*/
private Long id;
/**
* 账套ID
*/
private Long salarySobId;
/**
* 薪资项目ID
*/
private Long salaryItemId;
/**
* 类型(是否是项目组 0-不是 1-是)
*/
private Integer isGroup;
/**
* 是否隐藏0-不隐藏 1-隐藏)
*/
private Long itemHide;
/**
* 创建人
*/
private Long creator;
/**
* 是否删除
*/
private Integer deleteType;
/**
* 租户
*/
private String tenantKey;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新时间
*/
private Date updateTime;
}