weaver-hrm-salary/src/com/engine/salary/entity/siaccount/po/InsuranceAccountDetailPO.java

332 lines
6.8 KiB
Java
Raw Normal View History

2022-04-11 19:07:35 +08:00
package com.engine.salary.entity.siaccount.po;
2022-04-12 19:29:19 +08:00
import com.cloudstore.eccom.pc.table.WeaTableType;
import com.engine.salary.annotation.Encrypt;
2022-04-12 19:29:19 +08:00
import com.engine.salary.annotation.SalaryTable;
import com.engine.salary.elog.annotation.ElogTransform;
2022-04-12 19:29:19 +08:00
import lombok.AllArgsConstructor;
import lombok.Builder;
2022-04-11 19:07:35 +08:00
import lombok.Data;
2022-04-12 19:29:19 +08:00
import lombok.NoArgsConstructor;
2022-04-11 19:07:35 +08:00
import java.util.Date;
/**
* @Author weaver_cl
2022-07-13 11:45:16 +08:00
* @Description: 核算明细表 hrsa_bill_detail
2022-04-11 19:07:35 +08:00
* @Date 2022/4/11
* @Version V1.0
**/
@Data
2022-04-12 19:29:19 +08:00
@Builder
@NoArgsConstructor
@AllArgsConstructor
2022-04-19 12:19:06 +08:00
@SalaryTable(pageId = "2394fba1-1381-428a-8532-4e1e6b86626e", tableType = WeaTableType.CHECKBOX)
2022-06-28 18:21:44 +08:00
//hrsa_bill_detail
@ElogTransform(name = "福利台账明细表")
2022-04-11 19:07:35 +08:00
public class InsuranceAccountDetailPO {
/**
* 主键id
*/
@ElogTransform(name = "主键id")
2022-04-11 19:07:35 +08:00
private Long id;
/**
* 员工id
*/
@ElogTransform(name = "员工id")
2022-04-11 19:07:35 +08:00
private Long employeeId;
/**
* 账单月份
*/
@ElogTransform(name = "账单月份")
2022-04-11 19:07:35 +08:00
private String billMonth;
/**
* 账单状态 0-未归档 1-已归档
*/
@ElogTransform(name = "账单状态")
2022-04-11 19:07:35 +08:00
private Integer billStatus;
/**
* 缴纳状态
*/
@ElogTransform(name = "缴纳状态")
2022-04-11 19:07:35 +08:00
private Integer paymentStatus;
/**
* 补缴月份/退差月份
2022-04-11 19:07:35 +08:00
*/
@ElogTransform(name = "补缴月份/退差月份")
2022-04-11 19:07:35 +08:00
private String supplementaryMonth;
/**
* 补缴项目
*/
@ElogTransform(name = "补缴项目")
2022-04-11 19:07:35 +08:00
private String supplementaryProjects;
/**
* 数据来源 0-系统核算 1-临时数据
*/
@ElogTransform(name = "数据来源")
2022-04-11 19:07:35 +08:00
private Integer resourceFrom;
/**
* 社保缴纳组织
*/
@ElogTransform(name = "社保缴纳组织")
2022-04-11 19:07:35 +08:00
private Long socialPayOrg;
/**
* 社保账号
*/
@ElogTransform(name = "社保账号")
2022-04-11 19:07:35 +08:00
private String socialAccount;
/**
* 公积金缴纳组织
*/
@ElogTransform(name = "公积金缴纳组织")
2022-04-11 19:07:35 +08:00
private Long fundPayOrg;
/**
* 公积金账号
*/
@ElogTransform(name = "公积金账号")
2022-04-11 19:07:35 +08:00
private String fundAccount;
/**
* 补充公积金账号
*/
@ElogTransform(name = "补充公积金账号")
2022-04-11 19:07:35 +08:00
private String supplementFundAccount;
/**
* 其他福利缴纳组织
*/
@ElogTransform(name = "其他福利缴纳组织")
2022-04-11 19:07:35 +08:00
private Long otherPayOrg;
/**
* 社保方案ID
*/
@ElogTransform(name = "社保方案ID")
2022-04-11 19:07:35 +08:00
private Long socialSchemeId;
/**
* 社保缴纳基数
*/
@Encrypt
@ElogTransform(name = "社保缴纳基数")
2022-04-11 19:07:35 +08:00
private String socialPaymentBaseString;
/**
* 社保缴纳基数单位
*/
@Encrypt
@ElogTransform(name = "社保缴纳基数——单位")
private String socialPaymentComBaseString;
2022-04-11 19:07:35 +08:00
/**
* 公积金方案ID
*/
@ElogTransform(name = "公积金方案ID")
2022-04-11 19:07:35 +08:00
private Long fundSchemeId;
/**
* 公积金缴纳基数
*/
@Encrypt
@ElogTransform(name = "公积金缴纳基数")
2022-04-11 19:07:35 +08:00
private String fundPaymentBaseString;
/**
* 公积金缴纳基数单位
*/
@Encrypt
@ElogTransform(name = "公积金缴纳基数——单位")
private String fundPaymentComBaseString;
2022-04-11 19:07:35 +08:00
/**
* 其他福利方案id
*/
@ElogTransform(name = "其他福利方案id")
2022-04-11 19:07:35 +08:00
private Long otherSchemeId;
/**
* 其他福利缴纳基数
*/
@Encrypt
@ElogTransform(name = "其他福利缴纳基数")
2022-04-11 19:07:35 +08:00
private String otherPaymentBaseString;
/**
* 其他福利缴纳基数单位
*/
@Encrypt
@ElogTransform(name = "其他福利缴纳基数——单位")
private String otherPaymentComBaseString;
2022-04-11 19:07:35 +08:00
/**
* 社保个人缴费明细
*/
@Encrypt
@ElogTransform(name = "社保个人缴费明细")
2022-04-11 19:07:35 +08:00
private String socialPerJson;
/**
* 社保个人合计
*/
@Encrypt
@ElogTransform(name = "社保个人合计")
2022-04-11 19:07:35 +08:00
private String socialPerSum;
/**
* 公积金个人缴费明细
*/
@Encrypt
@ElogTransform(name = "公积金个人缴费明细")
2022-04-11 19:07:35 +08:00
private String fundPerJson;
/**
* 公积金个人合计
*/
@Encrypt
@ElogTransform(name = "公积金个人合计")
2022-04-11 19:07:35 +08:00
private String fundPerSum;
/**
* 其他福利个人缴费明细
*/
@Encrypt
@ElogTransform(name = "其他福利个人缴费明细")
2022-04-11 19:07:35 +08:00
private String otherPerJson;
/**
* 其他福利个人合计
*/
@Encrypt
@ElogTransform(name = "其他福利个人合计")
2022-04-11 19:07:35 +08:00
private String otherPerSum;
/**
* 个人合计
*/
@Encrypt
@ElogTransform(name = "个人合计")
2022-04-11 19:07:35 +08:00
private String perSum;
/**
* 社保单位缴费明细
*/
@Encrypt
@ElogTransform(name = "社保单位缴费明细")
2022-04-11 19:07:35 +08:00
private String socialComJson;
/**
* 社保单位合计
*/
@Encrypt
@ElogTransform(name = "社保单位合计")
2022-04-11 19:07:35 +08:00
private String socialComSum;
/**
* 公积金单位缴费明细
*/
@ElogTransform(name = "公积金单位缴费明细")
2022-04-11 19:07:35 +08:00
private String fundComJson;
/**
* 公积金单位合计
*/
@ElogTransform(name = "公积金单位合计")
2022-04-11 19:07:35 +08:00
private String fundComSum;
/**
* 其他福利单位缴费明细
*/
@ElogTransform(name = "其他福利单位缴费明细")
2022-04-11 19:07:35 +08:00
private String otherComJson;
/**
* 其他福利单位合计
*/
@ElogTransform(name = "其他福利单位合计")
2022-04-11 19:07:35 +08:00
private String otherComSum;
/**
* 单位合计
*/
@Encrypt
@ElogTransform(name = "单位合计")
2022-04-11 19:07:35 +08:00
private String comSum;
/**
* 社保合计
*/
@Encrypt
@ElogTransform(name = "社保合计")
2022-04-11 19:07:35 +08:00
private String socialSum;
/**
* 公积金合计
*/
@Encrypt
@ElogTransform(name = "公积金合计")
2022-04-11 19:07:35 +08:00
private String fundSum;
/**
* 其他福利合计
*/
@Encrypt
@ElogTransform(name = "其他福利合计")
2022-04-11 19:07:35 +08:00
private String otherSum;
/**
* 合计
*/
@Encrypt
@ElogTransform(name = "合计")
2022-04-11 19:07:35 +08:00
private String total;
/**
* 创建人id
*/
@ElogTransform(name = "创建人id")
2022-04-11 19:07:35 +08:00
private Long creator;
/**
* 是否删除
*/
@ElogTransform(name = "是否删除")
2022-04-11 19:07:35 +08:00
private Integer deleteType;
/**
* 创建时间
*/
@ElogTransform(name = "创建时间")
2022-04-11 19:07:35 +08:00
private Date createTime;
/**
* 更新时间
*/
@ElogTransform(name = "更新时间")
2022-04-11 19:07:35 +08:00
private Date updateTime;
/**
* 租户key
*/
@ElogTransform(name = "租户key")
2022-04-11 19:07:35 +08:00
private String tenantKey;
2022-06-06 19:08:39 +08:00
/**
* 个税扣缴义务人
*/
@ElogTransform(name = "个税扣缴义务人")
2022-06-06 19:08:39 +08:00
private Long paymentOrganization;
2022-04-11 19:07:35 +08:00
}