62 lines
1.3 KiB
Java
62 lines
1.3 KiB
Java
package com.engine.salary.entity.siarchives.dto;
|
|
|
|
import com.engine.salary.enums.sicategory.UndertakerEnum;
|
|
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 InsuranceArchivesOtherSchemeDTO {
|
|
|
|
//主键id
|
|
private Long id;
|
|
|
|
//员工id
|
|
private Long employeeId;
|
|
|
|
//暂不缴纳
|
|
private Integer nonPayment;
|
|
|
|
//福利类型
|
|
private WelfareTypeEnum welfareType;
|
|
|
|
//其他福利起始缴纳月
|
|
private String otherStartTime;
|
|
|
|
//其他福利最后缴纳月
|
|
private String otherEndTime;
|
|
|
|
//其他福利方案名称
|
|
private String otherName;
|
|
|
|
//其他福利方案id
|
|
private Long otherSchemeId;
|
|
|
|
//private List<WeaSearchConditionOption> siOtherList;
|
|
|
|
|
|
//其他福利缴纳组织
|
|
private Long paymentOrganization;
|
|
|
|
//private List<WeaSearchConditionOption> paymentOrganizationList;
|
|
|
|
//其他福利个人实际承担方
|
|
private UndertakerEnum underTake;
|
|
|
|
private String otherPaymentBaseString;
|
|
|
|
//private WeaForm otherPaymentBase;
|
|
}
|