mirror of
https://codeup.aliyun.com/64f7d6b8ce01efaafef1e678/coal/coal.git
synced 2026-01-25 07:46:40 +08:00
增加五险一金字段
This commit is contained in:
@@ -75,4 +75,41 @@ public class CreateEmployeeDto extends OrgCommonDto {
|
||||
@ElementCollection
|
||||
@Comment("员工证件信息")
|
||||
private List<EmpCertVO> certs;
|
||||
|
||||
@Comment("养老保险基数")
|
||||
private Double insurance1Base;
|
||||
@Comment("养老保险比例")
|
||||
private Double insurance1Percent;
|
||||
|
||||
|
||||
@Comment("医疗保险基数")
|
||||
private Double insurance2Base;
|
||||
@Comment("医疗保险比例")
|
||||
private Double insurance2Percent;
|
||||
|
||||
|
||||
|
||||
@Comment("失业保险基数")
|
||||
private Double insurance3Base;
|
||||
@Comment("失业保险比例")
|
||||
private Double insurance3Percent;
|
||||
|
||||
|
||||
|
||||
@Comment("工伤保险基数")
|
||||
private Double insurance4Base;
|
||||
@Comment("工伤保险比例")
|
||||
private Double insurance4Percent;
|
||||
|
||||
|
||||
|
||||
@Comment("生育保险基数")
|
||||
private Double insurance5Base;
|
||||
@Comment("生育保险比例")
|
||||
private Double insurance5Percent;
|
||||
|
||||
@Comment("住房公积金基数")
|
||||
private Double insurance6Base;
|
||||
@Comment("住房公积金比例")
|
||||
private Double insurance6Percent;
|
||||
}
|
||||
|
||||
@@ -114,4 +114,42 @@ public class EmployeeDto extends OrgCommonDto {
|
||||
@ElementCollection
|
||||
@Comment("员工证件信息")
|
||||
private List<EmpCertVO> certs;
|
||||
|
||||
|
||||
@Comment("养老保险基数")
|
||||
private Double insurance1Base;
|
||||
@Comment("养老保险比例")
|
||||
private Double insurance1Percent;
|
||||
|
||||
|
||||
@Comment("医疗保险基数")
|
||||
private Double insurance2Base;
|
||||
@Comment("医疗保险比例")
|
||||
private Double insurance2Percent;
|
||||
|
||||
|
||||
|
||||
@Comment("失业保险基数")
|
||||
private Double insurance3Base;
|
||||
@Comment("失业保险比例")
|
||||
private Double insurance3Percent;
|
||||
|
||||
|
||||
|
||||
@Comment("工伤保险基数")
|
||||
private Double insurance4Base;
|
||||
@Comment("工伤保险比例")
|
||||
private Double insurance4Percent;
|
||||
|
||||
|
||||
|
||||
@Comment("生育保险基数")
|
||||
private Double insurance5Base;
|
||||
@Comment("生育保险比例")
|
||||
private Double insurance5Percent;
|
||||
|
||||
@Comment("住房公积金基数")
|
||||
private Double insurance6Base;
|
||||
@Comment("住房公积金比例")
|
||||
private Double insurance6Percent;
|
||||
}
|
||||
|
||||
@@ -76,4 +76,42 @@ public class UpdateEmployeeDto extends OrgCommonDto {
|
||||
@ElementCollection
|
||||
@Comment("员工证件信息")
|
||||
private List<EmpCertVO> certs;
|
||||
|
||||
@Comment("养老保险基数")
|
||||
private Double insurance1Base;
|
||||
@Comment("养老保险比例")
|
||||
private Double insurance1Percent;
|
||||
|
||||
|
||||
@Comment("医疗保险基数")
|
||||
private Double insurance2Base;
|
||||
@Comment("医疗保险比例")
|
||||
private Double insurance2Percent;
|
||||
|
||||
|
||||
|
||||
@Comment("失业保险基数")
|
||||
private Double insurance3Base;
|
||||
@Comment("失业保险比例")
|
||||
private Double insurance3Percent;
|
||||
|
||||
|
||||
|
||||
@Comment("工伤保险基数")
|
||||
private Double insurance4Base;
|
||||
@Comment("工伤保险比例")
|
||||
private Double insurance4Percent;
|
||||
|
||||
|
||||
|
||||
@Comment("生育保险基数")
|
||||
private Double insurance5Base;
|
||||
@Comment("生育保险比例")
|
||||
private Double insurance5Percent;
|
||||
|
||||
@Comment("住房公积金基数")
|
||||
private Double insurance6Base;
|
||||
@Comment("住房公积金比例")
|
||||
private Double insurance6Percent;
|
||||
|
||||
}
|
||||
|
||||
@@ -150,4 +150,52 @@ public class EmployeeEntity extends OrgCommonEntity {
|
||||
@ElementCollection
|
||||
@Comment("员工证件信息")
|
||||
private List<EmpCertVO> certs;
|
||||
|
||||
/**
|
||||
* “五险”讲的是五种保险,包括养老保险、医疗保险、失业保险、工伤保险和生育保险。
|
||||
*
|
||||
* <p>“一金”指的是住房公积金。
|
||||
*
|
||||
* <p>其中养老保险、医疗保险和失业保险,这三种险是由企业和个人共同缴纳的保费,工伤保险和生育保险完全是由企业承担的。个人不需要缴纳。这里要注意的是“五险”是法定的,而“一金”不是法定的。
|
||||
*/
|
||||
@Comment("养老保险基数")
|
||||
private Double insurance1Base;
|
||||
@Comment("养老保险比例")
|
||||
private Double insurance1Percent;
|
||||
|
||||
|
||||
@Comment("医疗保险基数")
|
||||
private Double insurance2Base;
|
||||
@Comment("医疗保险比例")
|
||||
private Double insurance2Percent;
|
||||
|
||||
|
||||
|
||||
@Comment("失业保险基数")
|
||||
private Double insurance3Base;
|
||||
@Comment("失业保险比例")
|
||||
private Double insurance3Percent;
|
||||
|
||||
|
||||
|
||||
@Comment("工伤保险基数")
|
||||
private Double insurance4Base;
|
||||
@Comment("工伤保险比例")
|
||||
private Double insurance4Percent;
|
||||
|
||||
|
||||
|
||||
@Comment("生育保险基数")
|
||||
private Double insurance5Base;
|
||||
@Comment("生育保险比例")
|
||||
private Double insurance5Percent;
|
||||
|
||||
@Comment("住房公积金基数")
|
||||
private Double insurance6Base;
|
||||
@Comment("住房公积金比例")
|
||||
private Double insurance6Percent;
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user