57 lines
1.2 KiB
Java
57 lines
1.2 KiB
Java
|
|
package com.engine.salary.constant;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @description: 个税税率表明细表的dataIndex
|
||
|
|
* @author: xiajun
|
||
|
|
* @modified By: xiajun
|
||
|
|
* @date: Created in 1/17/22 1:58 PM
|
||
|
|
* @version:v1.0
|
||
|
|
*/
|
||
|
|
public class TaxRateDataIndexConstant {
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 序号
|
||
|
|
*/
|
||
|
|
public static final String INDEX_NUM = "indexNum";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 收入下限(不含)
|
||
|
|
*/
|
||
|
|
public static final String INCOME_LOWER_LIMIT = "incomeLowerLimit";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 收入上限(含)
|
||
|
|
*/
|
||
|
|
public static final String INCOME_UPPER_LIMIT = "incomeUpperLimit";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 免税固定值
|
||
|
|
*/
|
||
|
|
public static final String DUTY_FREE_VALUE = "dutyFreeValue";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 免税比例
|
||
|
|
*/
|
||
|
|
public static final String DUTY_FREE_RATE = "dutyFreeRate";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 应纳税所得额下限(不含)
|
||
|
|
*/
|
||
|
|
public static final String TAXABLE_INCOME_LOWER_LIMIT = "taxableIncomeLLimit";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 应纳税所得额上限(含)
|
||
|
|
*/
|
||
|
|
public static final String TAXABLE_INCOME_UPPER_LIMIT = "taxableIncomeULimit";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 税率
|
||
|
|
*/
|
||
|
|
public static final String TAX_RATE = "taxRate";
|
||
|
|
|
||
|
|
/**
|
||
|
|
* 速算扣除数
|
||
|
|
*/
|
||
|
|
public static final String TAX_DEDUCTION = "taxDeduction";
|
||
|
|
}
|