SalaryConstant.java 3.85 KB
Newer Older
位宇华's avatar
位宇华 committed
1 2 3 4 5 6 7 8 9 10
package com.ruoyi.system.constant;

import java.util.Set;
import java.util.stream.Collectors;
import java.util.stream.Stream;

public class SalaryConstant {
    /**
     * 项目
     */
位宇华's avatar
位宇华 committed
11
    public final static Set<String> ORG_SET = Stream.of("项目").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
12 13 14
    /**
     * 人数
     */
位宇华's avatar
位宇华 committed
15
    public final static Set<String> PERSON_COUNT_SET = Stream.of("人数").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
16 17 18
    /**
     * 医疗补贴
     */
位宇华's avatar
位宇华 committed
19
    public final static Set<String> MEDICAL_SUBSIDY_SET = Stream.of("医疗补贴").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
20 21 22 23 24 25 26
    /**
     * 应付工资
     */
    public final static Set<String> SALARY_SET = Stream.of("应付工资").collect(Collectors.toSet());
    /**
     * 应付工资合计
     */
位宇华's avatar
位宇华 committed
27
    public final static Set<String> SUMSALARY_SET = Stream.of("应付工资合计").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
28 29 30
    /**
     * 基本养老保险
     */
位宇华's avatar
位宇华 committed
31
    public final static Set<String> OLD_INSURANCE_SET = Stream.of("基本养老保险").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
32 33 34 35 36 37 38
    /**
     * 年金
     */
    public final static Set<String> ANNUITY_SET = Stream.of("年金").collect(Collectors.toSet());
    /**
     * 一次性补缴的补充医疗保险(按上年度0.5%)
     */
位宇华's avatar
位宇华 committed
39
    public final static Set<String> SINGLE_SUPPLY_MEDICAL_INSURANCE_SET = Stream.of("一次性补缴的补充医疗保险(按上年度0.5%)").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
40 41 42
    /**
     * 基本医疗保险
     */
位宇华's avatar
位宇华 committed
43
    public final static Set<String> MEDICAL_INSURANCE_SET = Stream.of("基本医疗保险").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
44 45 46
    /**
     * 补充医疗保险
     */
位宇华's avatar
位宇华 committed
47
    public final static Set<String> SUPPLY_MEDICAL_INSURANCE_SET = Stream.of("补充医疗保险").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
48 49 50
    /**
     * 生育保险
     */
位宇华's avatar
位宇华 committed
51
    public final static Set<String> BIRTH_INSURANCE_SET = Stream.of("生育保险").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
52 53 54 55 56 57 58 59 60 61 62
    /**
     * 费用来源
     */
    //public final static Set<String> SOURCE_EXPENSES_SET = Stream.of("").collect(Collectors.toSet());
    /**
     * 失业保险
     */
    public final static Set<String> UNEMPLOYMENT_INSURANCE_SET = Stream.of("失业保险").collect(Collectors.toSet());
    /**
     * 工伤保险
     */
位宇华's avatar
位宇华 committed
63
    public final static Set<String> INJURY_INSURANCE_SET = Stream.of("工伤保险").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
64 65 66
    /**
     * 企业住房公积金
     */
位宇华's avatar
位宇华 committed
67
    public final static Set<String> COMPANY_HOUSE_FUND_SET = Stream.of("企业住房公积金").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
68 69 70 71 72 73 74
    /**
     * 住房公积金
     */
    public final static Set<String> HOUSE_FUND_SET = Stream.of("住房公积金").collect(Collectors.toSet());
    /**
     * 工会经费
     */
位宇华's avatar
位宇华 committed
75
    public final static Set<String> LABOR_UNION_DUES_SET = Stream.of("工会经费").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
76 77 78
    /**
     * 提取职教费
     */
位宇华's avatar
位宇华 committed
79
    public final static Set<String> EDU_FEES_SET = Stream.of("提取职教费").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
80 81 82 83

    /**
     * 一孩
     */
位宇华's avatar
位宇华 committed
84
    public final static Set<String> oneChild_SET = Stream.of("一孩").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
85 86 87
    /**
     * 班中餐
     */
位宇华's avatar
位宇华 committed
88
    public final static Set<String> LUNCH_SET = Stream.of("班中餐").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
89 90 91
    /**
     * 长户险
     */
位宇华's avatar
位宇华 committed
92
    public final static Set<String> LONG_ACCOUNT_INSURANCE_SET = Stream.of("长户险").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
93 94 95
    /**
     * 荣誉金
     */
位宇华's avatar
位宇华 committed
96
    public final static Set<String> HONOR_MONEY_SET = Stream.of("荣誉金").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
97 98 99
    /**
     * 取暖补贴
     */
位宇华's avatar
位宇华 committed
100
    public final static Set<String> WARM_SUBSIDY_SET = Stream.of("取暖补贴").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
101 102 103
    /**
     * 防暑降温
     */
位宇华's avatar
位宇华 committed
104
    public final static Set<String> HEAT_PREVENT_SUBSIDY_SET = Stream.of("防暑降温").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
105 106 107
    /**
     * 所属矿
     */
位宇华's avatar
位宇华 committed
108
    public final static Set<String> BELONG_TO_COAL_SET = Stream.of("所属矿").collect(Collectors.toSet());
位宇华's avatar
位宇华 committed
109
}