63 lines
1.2 KiB
Java
63 lines
1.2 KiB
Java
package com.engine.salary.entity.siarchives.dto;
|
|
|
|
import com.engine.salary.enums.sicategory.WelfareTypeEnum;
|
|
import lombok.AllArgsConstructor;
|
|
import lombok.Builder;
|
|
import lombok.Data;
|
|
import lombok.NoArgsConstructor;
|
|
|
|
|
|
/**
|
|
* @Author weaver_cl
|
|
* @Description: TODO 员工福利档案社保
|
|
* @Date 2022/3/15
|
|
* @Version V1.0
|
|
**/
|
|
@Data
|
|
@Builder
|
|
@NoArgsConstructor
|
|
@AllArgsConstructor
|
|
public class InsuranceArchivesSocialSchemeDTO {
|
|
|
|
//主键id
|
|
private Long id;
|
|
|
|
//员工id
|
|
private Long employeeId;
|
|
|
|
//暂不缴纳
|
|
private Integer nonPayment;
|
|
|
|
//福利类型
|
|
private WelfareTypeEnum welfareType;
|
|
|
|
//社保起始缴纳月
|
|
private String socialStartTime;
|
|
|
|
//社保最后缴纳月
|
|
private String socialEndTime;
|
|
|
|
//社保方案名称
|
|
private String socialName;
|
|
|
|
//社保方案id
|
|
private String socialSchemeId;
|
|
|
|
//private List<WeaSearchConditionOption> siSocialList;
|
|
|
|
//社保账号
|
|
private String schemeAccount;
|
|
|
|
//社保缴纳组织
|
|
private Long paymentOrganization;
|
|
|
|
//private List<WeaSearchConditionOption> paymentOrganizationList;
|
|
|
|
//社保个人实际承担方 UndertakerEnum
|
|
private String underTake;
|
|
|
|
//社保缴纳基数
|
|
private String schemePaymentBaseString;
|
|
|
|
}
|