61 lines
1.1 KiB
Java
61 lines
1.1 KiB
Java
package com.engine.salary.entity.salaryacct.po;
|
||
|
||
import lombok.AllArgsConstructor;
|
||
import lombok.Builder;
|
||
import lombok.Data;
|
||
import lombok.NoArgsConstructor;
|
||
|
||
import java.util.Collection;
|
||
import java.util.Date;
|
||
|
||
/**
|
||
* @ClassName SalaryAcctResultTemplatePO
|
||
* @author Harryxzy
|
||
* @date 2024/3/26 15:08
|
||
* @description 薪资核算导出模板
|
||
*/
|
||
@AllArgsConstructor
|
||
@NoArgsConstructor
|
||
@Builder
|
||
@Data
|
||
//hrsa_acct_result_template
|
||
public class SalaryAcctResultTemplatePO {
|
||
/**
|
||
* 主键id
|
||
*/
|
||
private Long id;
|
||
|
||
/**
|
||
* 模板名称
|
||
*/
|
||
private String templateName;
|
||
|
||
/**
|
||
* 模板类型, 0:导出模板 1:公共导出模板 2:导入模板
|
||
*/
|
||
private Integer type;
|
||
|
||
/**
|
||
* 薪资账套id
|
||
*/
|
||
private Long salarySobId;
|
||
|
||
/**
|
||
* 薪资项目id
|
||
*/
|
||
private String salaryItemIds;
|
||
|
||
private Long creator;
|
||
|
||
private Date updateTime;
|
||
|
||
private Date createTime;
|
||
|
||
private Integer deleteType;
|
||
|
||
private String tenantKey;
|
||
|
||
//主键id集合
|
||
private Collection<Long> ids;
|
||
private Collection<Integer> types;
|
||
} |