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

247 lines
3.9 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.SalaryTable;
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-08 11:30:10 +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
2022-04-11 19:07:35 +08:00
public class InsuranceAccountDetailPO {
/**
* 主键id
*/
private Long id;
/**
* 员工id
*/
private Long employeeId;
/**
* 账单月份
*/
private String billMonth;
/**
* 账单状态 0-未归档 1-已归档
*/
private Integer billStatus;
/**
* 缴纳状态
*/
private Integer paymentStatus;
/**
* 补缴月份
*/
private String supplementaryMonth;
/**
* 补缴项目
*/
private String supplementaryProjects;
/**
* 数据来源 0-系统核算 1-临时数据
*/
private Integer resourceFrom;
/**
* 社保缴纳组织
*/
private Long socialPayOrg;
/**
* 社保账号
*/
private String socialAccount;
/**
* 公积金缴纳组织
*/
private Long fundPayOrg;
/**
* 公积金账号
*/
private String fundAccount;
/**
* 补充公积金账号
*/
private String supplementFundAccount;
/**
* 其他福利缴纳组织
*/
private Long otherPayOrg;
/**
* 社保方案ID
*/
private Long socialSchemeId;
/**
* 社保缴纳基数
*/
private String socialPaymentBaseString;
/**
* 公积金方案ID
*/
private Long fundSchemeId;
/**
* 公积金缴纳基数
*/
private String fundPaymentBaseString;
/**
* 其他福利方案id
*/
private Long otherSchemeId;
/**
* 其他福利缴纳基数
*/
private String otherPaymentBaseString;
/**
* 社保个人缴费明细
*/
private String socialPerJson;
/**
* 社保个人合计
*/
private String socialPerSum;
/**
* 公积金个人缴费明细
*/
private String fundPerJson;
/**
* 公积金个人合计
*/
private String fundPerSum;
/**
* 其他福利个人缴费明细
*/
private String otherPerJson;
/**
* 其他福利个人合计
*/
private String otherPerSum;
/**
* 个人合计
*/
private String perSum;
/**
* 社保单位缴费明细
*/
private String socialComJson;
/**
* 社保单位合计
*/
private String socialComSum;
/**
* 公积金单位缴费明细
*/
private String fundComJson;
/**
* 公积金单位合计
*/
private String fundComSum;
/**
* 其他福利单位缴费明细
*/
private String otherComJson;
/**
* 其他福利单位合计
*/
private String otherComSum;
/**
* 单位合计
*/
private String comSum;
/**
* 社保合计
*/
private String socialSum;
/**
* 公积金合计
*/
private String fundSum;
/**
* 其他福利合计
*/
private String otherSum;
/**
* 合计
*/
private String total;
/**
* 创建人id
*/
private Long creator;
/**
* 是否删除
*/
private Integer deleteType;
/**
* 创建时间
*/
private Date createTime;
/**
* 更新时间
*/
private Date updateTime;
/**
* 租户key
*/
private String tenantKey;
2022-06-06 19:08:39 +08:00
/**
* 个税扣缴义务人
*/
private Long paymentOrganization;
2022-04-11 19:07:35 +08:00
}