111 lines
1.6 KiB
Java
111 lines
1.6 KiB
Java
package com.engine.salary.entity.siaccount.po;
|
|
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
import java.util.Date;
|
|
|
|
|
|
/**
|
|
* @Author weaver_cl
|
|
* @Description: 核算主表 hrsa_bill_batch
|
|
* @Date 2022/4/11
|
|
* @Version V1.0
|
|
**/
|
|
@Data
|
|
@Builder
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
//hrsa_bill_batch
|
|
public class InsuranceAccountBatchPO {
|
|
|
|
/**
|
|
* 主键id
|
|
*/
|
|
private Long id;
|
|
|
|
/**
|
|
* 账单月份
|
|
*/
|
|
private String billMonth;
|
|
|
|
/**
|
|
* 账单状态 0-未归档 1-已归档
|
|
*/
|
|
private Integer billStatus;
|
|
|
|
/**
|
|
* 社保核算人数
|
|
*/
|
|
private Integer socialNum;
|
|
|
|
/**
|
|
* 公积金核算人数
|
|
*/
|
|
private Integer fundNum;
|
|
|
|
/**
|
|
* 其他福利核算人数
|
|
*/
|
|
private Integer otherNum;
|
|
|
|
/**
|
|
* 社保缴费总额(单位+个人)
|
|
*/
|
|
private String socialPay;
|
|
|
|
/**
|
|
* 公积金缴费总额(单位+个人)
|
|
*/
|
|
private String fundPay;
|
|
|
|
/**
|
|
* 其他福利缴费总额(单位+个人)
|
|
*/
|
|
private String otherPay;
|
|
|
|
/**
|
|
* 核算人
|
|
*/
|
|
private String accountant;
|
|
|
|
/**
|
|
* 备注
|
|
*/
|
|
private String remarks;
|
|
|
|
/**
|
|
* 创建人id
|
|
*/
|
|
private Long creator;
|
|
|
|
/**
|
|
* 是否删除
|
|
*/
|
|
private Integer deleteType;
|
|
|
|
/**
|
|
* 创建时间
|
|
*/
|
|
private Date createTime;
|
|
|
|
/**
|
|
* 更新时间
|
|
*/
|
|
private Date updateTime;
|
|
|
|
/**
|
|
* 租户key
|
|
*/
|
|
private String tenantKey;
|
|
|
|
/**
|
|
* 个税扣缴义务人
|
|
*/
|
|
private Long paymentOrganization;
|
|
|
|
|
|
}
|