Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangxinjiang
yifu-mvp
Commits
72d3d523
Commit
72d3d523
authored
Aug 06, 2022
by
fangxinjiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
薪资配置
parent
d1ba8b40
Hide whitespace changes
Inline
Side-by-side
Showing
37 changed files
with
2605 additions
and
2346 deletions
+2605
-2346
SalaryConstants.java
.../cloud/plus/v1/yifu/salary/constants/SalaryConstants.java
+271
-0
TConfigSalary.java
.../yifu/cloud/plus/v1/yifu/salary/entity/TConfigSalary.java
+105
-104
TMinSalary.java
...com/yifu/cloud/plus/v1/yifu/salary/entity/TMinSalary.java
+76
-79
TOwnDept.java
...a/com/yifu/cloud/plus/v1/yifu/salary/entity/TOwnDept.java
+22
-33
TSalaryConfigStandard.java
...oud/plus/v1/yifu/salary/entity/TSalaryConfigStandard.java
+85
-81
TSalaryTaxConfig.java
...fu/cloud/plus/v1/yifu/salary/entity/TSalaryTaxConfig.java
+72
-83
TSpecialDeducationSum.java
...oud/plus/v1/yifu/salary/entity/TSpecialDeducationSum.java
+226
-223
TConfigSalaryController.java
...us/v1/yifu/salary/controller/TConfigSalaryController.java
+56
-65
TMinSalaryController.java
.../plus/v1/yifu/salary/controller/TMinSalaryController.java
+45
-67
TOwnDeptController.java
...ud/plus/v1/yifu/salary/controller/TOwnDeptController.java
+100
-0
TSalaryConfigStandardController.java
...fu/salary/controller/TSalaryConfigStandardController.java
+126
-61
TSalaryTaxConfigController.java
...v1/yifu/salary/controller/TSalaryTaxConfigController.java
+76
-59
TSpecialDeducationSumController.java
...fu/salary/controller/TSpecialDeducationSumController.java
+95
-90
TConfigSalaryMapper.java
...cloud/plus/v1/yifu/salary/mapper/TConfigSalaryMapper.java
+18
-28
TMinSalaryMapper.java
...fu/cloud/plus/v1/yifu/salary/mapper/TMinSalaryMapper.java
+14
-28
TOwnDeptMapper.java
...yifu/cloud/plus/v1/yifu/salary/mapper/TOwnDeptMapper.java
+20
-27
TSalaryConfigStandardMapper.java
...us/v1/yifu/salary/mapper/TSalaryConfigStandardMapper.java
+20
-28
TSalaryTaxConfigMapper.java
...ud/plus/v1/yifu/salary/mapper/TSalaryTaxConfigMapper.java
+34
-28
TSpecialDeducationSumMapper.java
...us/v1/yifu/salary/mapper/TSpecialDeducationSumMapper.java
+47
-29
TConfigSalaryService.java
...oud/plus/v1/yifu/salary/service/TConfigSalaryService.java
+14
-32
TMinSalaryService.java
.../cloud/plus/v1/yifu/salary/service/TMinSalaryService.java
+14
-32
TOwnDeptService.java
...fu/cloud/plus/v1/yifu/salary/service/TOwnDeptService.java
+36
-22
TSalaryConfigStandardService.java
.../v1/yifu/salary/service/TSalaryConfigStandardService.java
+17
-30
TSalaryTaxConfigService.java
.../plus/v1/yifu/salary/service/TSalaryTaxConfigService.java
+34
-29
TSpecialDeducationSumService.java
.../v1/yifu/salary/service/TSpecialDeducationSumService.java
+63
-35
TConfigSalaryServiceImpl.java
...v1/yifu/salary/service/impl/TConfigSalaryServiceImpl.java
+38
-64
TMinSalaryServiceImpl.java
...us/v1/yifu/salary/service/impl/TMinSalaryServiceImpl.java
+16
-68
TOwnDeptServiceImpl.java
...plus/v1/yifu/salary/service/impl/TOwnDeptServiceImpl.java
+59
-24
TSalaryConfigStandardServiceImpl.java
...salary/service/impl/TSalaryConfigStandardServiceImpl.java
+21
-65
TSalaryTaxConfigServiceImpl.java
...yifu/salary/service/impl/TSalaryTaxConfigServiceImpl.java
+45
-35
TSpecialDeducationSumServiceImpl.java
...salary/service/impl/TSpecialDeducationSumServiceImpl.java
+128
-229
TConfigSalaryMapper.xml
...ary-biz/src/main/resources/mapper/TConfigSalaryMapper.xml
+85
-92
TMinSalaryMapper.xml
...salary-biz/src/main/resources/mapper/TMinSalaryMapper.xml
+63
-87
TOwnDeptMapper.xml
...u-salary-biz/src/main/resources/mapper/TOwnDeptMapper.xml
+36
-50
TSalaryConfigStandardMapper.xml
...src/main/resources/mapper/TSalaryConfigStandardMapper.xml
+65
-76
TSalaryTaxConfigMapper.xml
...-biz/src/main/resources/mapper/TSalaryTaxConfigMapper.xml
+135
-75
TSpecialDeducationSumMapper.xml
...src/main/resources/mapper/TSpecialDeducationSumMapper.xml
+228
-188
No files found.
yifu-salary/yifu-salary-api/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/constants/SalaryConstants.java
0 → 100644
View file @
72d3d523
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
constants
;
import
java.math.BigDecimal
;
public
class
SalaryConstants
{
//cellValueBig.setScale(2, BigDecimal.ROUND_HALF_UP); //四舍五入
//在使用BigDecmial进行比较的时候不能使用equals与==比较了,需要使用compareTo()进行比较
//if ( temp1.compareTo(temp2)==0)
//结果是true比较大小可以用 temp2.compareTo(temp2) 返回值 -1 小于 0 等于 1 大于
//例子:if (yearFinal != null && yearFinal.compareTo(SalaryConstants.B_ZERO) == SalaryConstants.MORE_THAN )
//加法 + bigDecimal1.add(bigDecimal2)
//减法 - bigDecimal1.subtract(bigDecimal2)
//乘法 x bigDecimal1.multiply(bigDecimal2)
//除法 / bigDecimal1.divide(bigDecimal2)
// 项目报销的 数据来源:0企业微信;1固资划转
public
static
final
Integer
[]
DATA_SOURCE
=
{
0
,
1
};
// 保存类型:0:保存;1不保存
public
static
final
Integer
[]
SAVE_TYPE
=
{
0
,
1
};
//应发工资、年终奖、薪资扣税、年终奖扣税、个人社保扣缴、代扣个人社保、个人公积金扣缴、代扣个人公积金、年个税个人代扣、企业年金、专项扣除、减除费用、实发工资
public
static
final
String
[]
ACCOUNT_SORT
=
{
"应发工资"
,
"年终奖"
,
"个税"
,
"年终奖单独扣税"
,
"个人社保"
,
"代扣个人社保"
,
"个人公积金"
,
"代扣个人公积金"
,
"免个税个人代扣"
,
"企业(职业)年金"
,
"累计专项扣除总额"
,
"减除费用"
,
"实发工资"
,
"个人实发合计"
};
//通用身份证号长度
public
static
final
int
idCardLength
=
18
;
public
static
final
String
NON_TAX
=
"非扣税项"
;
/*
* @Description: 0待提交1待审核 3待发放4已发放5审核不通过6确认不通过7财务退回8:结算单调整待审核 9: 结算单调整待打印
* @Author: hgw
* @Date: 2019/10/10 14:55
* @return:
**/
public
static
final
Integer
[]
AUDIT_STATUS
=
{
0
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
};
public
static
final
String
[]
AUDIT_STATUS_STRING
=
{
"待提交"
,
"待审核"
,
"-"
,
"待发放"
,
"已发放"
,
"审核不通过"
,
"确认不通过"
,
"财务退回"
,
"结算单调整待审核"
,
"结算单调整待打印"
};
//发放失败-认领状态 0待认领1待出账2已发放3再次失败待认领
public
static
final
Integer
[]
LOST_STATUS
=
{
0
,
1
,
2
,
3
};
//申请垫付流程状态( 0:未申请 1已申请 2申请不通过 3申请已通过)
public
static
final
Integer
[]
ADVANCE_STATUS
=
{
0
,
1
,
2
,
3
};
//收入表(TIncomeTable)//来源类型(fromType):(1工资结算单/2代理预估单/3商险结算单/4一次性业务结算单/5其他收入)/6工程工资结算单/7纯收入
public
static
final
Integer
[]
INCOME_TABLE_FROM_TYPE
=
{
0
,
1
,
2
,
3
,
4
,
5
,
6
,
7
};
//发放失败关联报账类型:0工资;1工程工资 2:非扣税项3暂停发 4自定义暂停发
public
static
final
Integer
[]
ACCOUNT_TYPE
=
{
0
,
1
,
2
,
3
,
4
};
//开票关联结算单类型:0普通工资/1工程工资/2商险/3预估结算单/4一次性业务结算单
public
static
final
String
[]
INVOICE_TYPE
=
{
"0"
,
"1"
,
"2"
,
"3"
,
"4"
};
//开票审核状态(0待提交/1待审核/2审核通过/3审核不通过)
public
static
final
String
[]
INVOICE_AUDITFLAG
=
{
"0"
,
"1"
,
"2"
,
"3"
};
//开票状态(0待开票/1已开票)
public
static
final
String
[]
INVOICE_STATUS
=
{
"0"
,
"1"
};
//附件类型:0工资;1工程工资;2暂停发;3自定义项暂停发;4薪资打印记录;5核准表打印记录;6:非扣税项 7发放失败 8自有员工附件 10换人换卡附件
public
static
final
Integer
[]
LINK_TYPE
=
{
0
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
10
};
//打印来源:0:工资结算单;1:工程结算单;2:暂停发发放记录;
public
static
final
Integer
[]
PRINT_FROM_TYPE
=
{
0
,
1
,
2
};
//暂停发发放记录类型:0:工资暂停发;1:工程工资暂停发;2:普通自定义项暂停发 5:工程自定义项暂停发
public
static
final
Integer
[]
TYPE_OF_CHARGE
=
{
0
,
1
,
2
,
3
,
4
,
5
};
//工程文件类型:0三方协议;1委托付款函;2劳务费;3其他
public
static
final
Integer
[]
ENGINEER_TYPE
=
{
0
,
1
,
2
,
3
};
//发放状态 0: 未发放 1: 发放成功 2:发放失败
public
static
final
String
[]
DISTRIBUTION_FLAG
=
{
"0"
,
"1"
,
"2"
};
//暂停发-发放状态 0: 待发放 1: 发放成功 2:发放失败;3:待审核4:审核退回 5失败待认领 6失败待发放 7失败已发放 8再次失败待认领9不发放
public
static
final
Integer
[]
CHARGE_STATUS
=
{
0
,
1
,
2
,
3
,
4
,
5
,
6
,
7
,
8
,
9
};
public
static
final
String
[]
SALARY_FORM_TYPE
=
{
"工资"
,
"绩效"
,
"其他"
,
"劳务费"
,
""
,
""
,
""
,
"非扣税项"
};
//款项来源(0客户到款/1垫付)
public
static
final
Integer
[]
MONEY_FROM
=
{
0
,
1
};
//暂停发类型 0: 工资 1: 工程
public
static
final
Integer
[]
PAUSE_TYPE
=
{
0
,
1
};
//付款方式 0: 现金 1: 银行
public
static
final
Integer
[]
SALARY_PAY_TYPE
=
{
0
,
1
};
//所得税类型:0:工资;1:年终奖
public
static
final
Integer
[]
SALARY_TAX_TYPE
=
{
0
,
1
};
//小数位
public
static
final
int
PLACES
=
2
;
public
static
final
int
TAX_FEE_PLACES
=
6
;
public
static
final
BigDecimal
B_ZERO
=
new
BigDecimal
(
"0"
);
public
static
final
BigDecimal
B_ONE
=
new
BigDecimal
(
"1"
);
public
static
final
BigDecimal
B_TWELVE
=
new
BigDecimal
(
"12"
);
public
static
final
BigDecimal
B_ONEHUNDRED
=
new
BigDecimal
(
"100"
);
//小于
public
static
final
int
LESS_THAN
=
-
1
;
//等于
public
static
final
int
EQUAL
=
0
;
//大于
public
static
final
int
MORE_THAN
=
1
;
//模板列必填
public
static
final
String
IS_MUST
=
"1"
;
public
static
final
String
EMP_NAME
=
"姓名"
;
public
static
final
String
IF_NEW_EMPLOYEE
=
"是否新员工(默认否)"
;
public
static
final
String
IS_NEW
=
"是"
;
public
static
final
String
ID_NUMBER
=
"身份证号"
;
public
static
final
String
CHECK_ID_NUMBER
=
"身份证号码"
;
public
static
final
String
SALARY_GIVE_TIME
=
"暂停发"
;
public
static
final
String
SOCIAL_CRATE_MONTH
=
"社保生成月份"
;
public
static
final
String
SOCIAL_MONTH
=
"社保缴纳月份"
;
public
static
final
String
FUND_CRATE_MONTH
=
"公积金生成月份"
;
public
static
final
String
FUND_MONTH
=
"公积金缴纳月份"
;
//结算主体-管理费项目
public
static
final
String
MANAGE_SERVER_ITEM
=
"MANAGE_SERVER_ITEM"
;
//结算主体-风险金项目
public
static
final
String
RISK_SERVER_ITEM
=
"RISK_SERVER_ITEM"
;
//暂停发
public
static
final
String
SALARY_GIVE_TIME_VALUE
=
"1"
;
//0:生成月;
public
static
final
String
PRIORITY_ZERO
=
"0"
;
//1:缴纳月
public
static
final
String
PRIORITY_ONE
=
"1"
;
//deleteFlag; //0:未删除; 1:已删除
public
static
final
Integer
NOT_DELETE
=
0
;
//deleteFlag; //0:未删除; 1:已删除
public
static
final
Integer
DELETED
=
1
;
//扣缴(社保、公积金)
public
static
final
String
IS_DEDUCT_ONE
=
"1"
;
//扣缴(社保、公积金)int
public
static
final
Integer
IS_DEDUCT_ONE_INT
=
1
;
//社保
public
static
final
Integer
IS_SOCIAL_ZERO
=
0
;
//公积金
public
static
final
Integer
IS_FUND_ONE
=
1
;
//正常扣缴社保
public
static
final
Integer
NOT_IS_NO_SALARY_ZERO
=
0
;
//无工资人员扣缴社保
public
static
final
Integer
IS_NO_SALARY_ONE
=
1
;
public
static
final
String
CASH
=
"现金"
;
//工资发放方式-现金
public
static
final
String
SALARY_STYLE_CASH
=
"0"
;
//工资发放方式-银行
public
static
final
String
SALARY_STYLE_BANK
=
"1"
;
//工资发放方式-线下
public
static
final
Integer
SALARY_STYLE_OFFLINE
=
2
;
//发放方式 1: 银付 0.现金 2:线下
public
static
final
Integer
[]
CHARGE_TYPE
=
{
0
,
1
,
2
};
public
static
final
String
COST_REDUCTION
=
"减除费用"
;
//减除费用
public
static
final
String
COST_REDUCTION_JAVA
=
"costReduction"
;
//代扣个人社保
public
static
final
String
WITHHOLIDING_PERSON_SOCIAL
=
"withholidingPersonSocial"
;
//代扣个人公积金
public
static
final
String
WITHHOLIDING_PERSON_FUND
=
"withholidingPersonFund"
;
//代扣单位社保"
public
static
final
String
WITHHOLIDING_UNIT_SOCIAL
=
"withholidingUnitSocial"
;
//代扣单位公积金
public
static
final
String
WITHHOLIDING_UNIT_FUND
=
"withholidingUnitFund"
;
public
static
final
String
PERSONAL_SOCIAL
=
"个人社保"
;
public
static
final
String
PERSONAL_FUND
=
"个人公积金"
;
public
static
final
String
UNIT_SOCIAL
=
"单位社保"
;
public
static
final
String
UNIT_FUND
=
"单位公积金"
;
public
static
final
String
PERSONAL_DEBT
=
"个人社保、公积金欠款"
;
public
static
final
String
PERSONAL_DEBT_JAVA
=
"personalDebt"
;
// 工程工资的叫法
public
static
final
String
ENG_SALARY_RELAY
=
"工资应发"
;
public
static
final
String
RELAY_SALARY
=
"应发工资"
;
//工资应发
public
static
final
String
RELAY_SALARY_JAVA
=
"relaySalary"
;
//个人社保
public
static
final
String
PERSONAL_SOCIAL_JAVA
=
"personalSocial"
;
//个人公积金
public
static
final
String
PERSONAL_FUND_JAVA
=
"personalFund"
;
//单位社保
public
static
final
String
UNIT_SOCIAL_JAVA
=
"unitSocial"
;
//单位公积金
public
static
final
String
UNIT_FUND_JAVA
=
"unitFund"
;
//商险
public
static
final
String
TAKING_RISKS_JAVA
=
"takingRisks"
;
//单位待补足——报账表,计算的是个人社保、公积金欠款——PERSONAL_DEBT_JAVA
public
static
final
String
UNIT_SUPPLEMENT_JAVA
=
"unitSupplement"
;
//个人待补足
public
static
final
String
CURRENT_SUPPLY_JAVA
=
"currentSupply"
;
//年终奖
public
static
final
String
ANNUAL_BONUS_JAVA
=
"annualBonus"
;
public
static
final
String
PRE_CURRENT_SUPPLY
=
"前次个人待补足"
;
//前次个人待补足
public
static
final
String
PRE_CURRENT_SUPPLY_JAVA
=
"preCurrentSupply"
;
//专项扣除-专区
public
static
final
String
SPECIAL_DEDU_MONEY_SUM
=
"累计专项扣除总额"
;
//累计专项扣除总额
public
static
final
String
SPECIAL_DEDU_MONEY_SUM_JAVA
=
"specialDeduMoney"
;
public
static
final
String
SUM_CHILD_EDU_MONEY
=
"累计子女教育"
;
//累计子女教育
public
static
final
String
SUM_CHILD_EDU_MONEY_JAVA
=
"sumChildEduMoney"
;
public
static
final
String
SUM_HOUSING_LOAN_MONEY
=
"累计住房贷款利息"
;
//累计住房贷款利息
public
static
final
String
SUM_HOUSING_LOAN_MONEY_JAVA
=
"sumHousingLoanMoney"
;
public
static
final
String
SUM_HOUSING_RENT_MONEY
=
"累计住房租金"
;
//累计住房租金
public
static
final
String
SUM_HOUSING_RENT_MONEY_JAVA
=
"sumHousingRentMoney"
;
public
static
final
String
SUM_SUPPORT_ELDERLY_MONEY
=
"累计赡养老人"
;
//累计赡养老人
public
static
final
String
SUM_SUPPORT_ELDERLY_MONEY_JAVA
=
"sumSupportElderlyMoney"
;
public
static
final
String
SUM_CONTINUING_EDUCATION_MONEY
=
"累计继续教育"
;
//累计继续教育
public
static
final
String
SUM_CONTINUING_EDUCATION_MONEY_JAVA
=
"sumContinuingEducationMoney"
;
//累计婴幼儿照护费用
public
static
final
String
SUM_BABY_MONEY
=
"累计婴幼儿照护费用"
;
public
static
final
String
SUM_BABY_MONEY_JAVA
=
"sumBabyMoney"
;
public
static
final
String
ANNUAL_BONUS_TAX
=
"年终奖单独扣税"
;
//年终奖扣税
public
static
final
String
ANNUAL_BONUS_TAX_JAVA
=
"annualBonusTax"
;
//薪资扣税
public
static
final
String
SALARY_TAX
=
"个税"
;
//薪资扣税
public
static
final
String
SALARY_TAX_JAVA
=
"salaryTax"
;
public
static
final
String
ACTUAL_SALARY_SUM
=
"个人实发合计"
;
//个人实发合计
public
static
final
String
ACTUAL_SALARY_SUM_JAVA
=
"actualSalarySum"
;
//个人代扣
public
static
final
String
PDEDUCTION_JAVA
=
"pdeduction"
;
//单位代扣
public
static
final
String
UDEDUCTION_JAVA
=
"udeduction"
;
//免个税个人代扣
public
static
final
String
EXEMPTION_PERSION_TAX_JAVA
=
"exemptionPersionTax"
;
//企业(职业)年金
public
static
final
String
ENTERPRISE_ANNUITY_JAVA
=
"enterpriseAnnuity"
;
//独保费
public
static
final
String
ONLY_CHILD_JAVA
=
"onlyChild"
;
//风险抵押金
public
static
final
String
RISK_MORTGAGE_MONEY_JAVA
=
"riskMortgageMoney"
;
//单位补足扣返
public
static
final
String
UNIT_SUPPLY_JAVA
=
"unitSupply"
;
//其他费用1
public
static
final
String
OTHER_MONEY_ONE_JAVA
=
"otherMoneyOne"
;
//其他费用2
public
static
final
String
OTHER_MONEY_TWO_JAVA
=
"otherMoneyTwo"
;
//其他费用3
public
static
final
String
OTHER_MONEY_THREE_JAVA
=
"otherMoneyThree"
;
//个人社保卡费
public
static
final
String
PERSONAL_SOCIAL_CARD_JAVA
=
"personalSocialCard"
;
//单位社保卡费
public
static
final
String
UNIT_SOCIAL_CARD_JAVA
=
"unitSocialCard"
;
//工程类设置:
//应发工资
public
static
final
String
SALARY_SUM_JAVA
=
"relaySalary"
;
/**
* 未找到工资表
**/
public
static
final
String
NO_SALARY
=
"未找到工资表"
;
/**
* 未找到工程工资表
**/
public
static
final
String
NO_ENGINEER_SALARY
=
"未找到工程工资表"
;
//标记发放失败
public
static
final
String
FAILUE_MARK
=
"标记“发放失败”"
;
//发放失败重新发放
public
static
final
String
FAILUE_RESENDER
=
"重新发放"
;
//发放失败出账
public
static
final
String
FAILUE_SENDER
=
"“发放失败”出账"
;
//发放失败出账退回
public
static
final
String
FAILUE_SENDER_BACK
=
"“发放失败”出账退回"
;
//员工姓名/收款单位
public
static
final
String
FILE_EMPNAME_ORGNAME
=
"员工姓名/收款单位"
;
//银行账号
public
static
final
String
FILE_BANK_NO
=
"银行账号"
;
//派单限制统计表更新类型(0认领更新/1撤销认领更新/2匹配更新/3取消匹配更新)
public
static
final
Integer
[]
DISPATCH_UPDTYPE
=
{
0
,
1
,
2
,
3
};
}
yifu-salary/yifu-salary-api/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/entity/TConfigSalary.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
entity
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
entity
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.baomidou.mybatisplus.extension.activerecord.Model
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
lombok.Data
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
lombok.EqualsAndHashCode
;
import
org.hibernate.validator.constraints.Length
;
import
org.hibernate.validator.constraints.Length
;
import
javax.validation.constraints.NotBlank
;
import
javax.validation.constraints.NotBlank
;
import
javax.validation.constraints.NotNull
;
import
java.io.Serializable
;
/**
/**
*
项目基础薪酬配置-薪资配置2
*
工资报账配置
*
*
* @author hgw
* @author hgw
* @date 20
22-08-05 11:40:14
* @date 20
19-09-12 15:46:57
*/
*/
@Data
@Data
@TableName
(
"t_config_salary"
)
@EqualsAndHashCode
(
callSuper
=
true
)
@EqualsAndHashCode
(
callSuper
=
true
)
@Schema
(
description
=
"项目基础薪酬配置-薪资配置2"
)
@TableName
(
"t_config_salary"
)
public
class
TConfigSalary
extends
BaseEntity
{
@Tag
(
name
=
"薪资配置-普通薪资配置"
)
public
class
TConfigSalary
extends
Model
<
TConfigSalary
>
implements
Serializable
{
/**
private
static
final
long
serialVersionUID
=
1L
;
* 主键
/**
*/
* 主键
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
*/
@ExcelProperty
(
"主键"
)
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
private
String
id
;
@Schema
(
description
=
"主键"
)
/**
private
String
id
;
* 配置名称
/**
*/
* 配置名称
@ExcelAttribute
(
name
=
"配置名称"
,
isNotEmpty
=
true
,
errorInfo
=
"配置名称不能为空"
,
maxLength
=
50
)
*/
@NotBlank
(
message
=
"配置名称不能为空"
)
@NotBlank
(
message
=
"配置名称不能为空"
)
@Length
(
max
=
50
,
message
=
"配置名称不能超过50个字符"
)
@Length
(
max
=
50
,
message
=
"配置名称不能超过50个字符"
)
@ExcelProperty
(
"配置名称"
)
@ExcelAttribute
(
name
=
"配置名称"
,
isNotEmpty
=
true
,
errorInfo
=
"配置名称不能为空"
,
maxLength
=
50
)
private
String
name
;
@ExcelProperty
(
value
=
"配置名称"
)
/**
private
String
name
;
* 结算主体ID
/**
*/
* 结算主体ID
@ExcelAttribute
(
name
=
"结算主体ID"
,
isNotEmpty
=
true
,
errorInfo
=
"结算主体ID不能为空"
,
maxLength
=
32
)
*/
@NotBlank
(
message
=
"结算主体ID不能为空"
)
@NotBlank
(
message
=
"结算主体ID不能为空"
)
@Length
(
max
=
32
,
message
=
"结算主体ID不能超过32个字符"
)
@Length
(
max
=
32
,
message
=
"结算主体ID不能超过32个字符"
)
@ExcelProperty
(
"结算主体ID"
)
@ExcelAttribute
(
name
=
"结算主体ID"
,
isNotEmpty
=
true
,
errorInfo
=
"结算主体ID不能为空"
,
maxLength
=
32
)
private
String
departId
;
@ExcelProperty
(
value
=
"结算主体ID"
)
/**
private
String
departId
;
* 结算主体编码
/**
*/
* 结算主体编码
@ExcelAttribute
(
name
=
"结算主体编码"
,
isNotEmpty
=
true
,
errorInfo
=
"结算主体编码不能为空"
,
maxLength
=
32
)
*/
@NotBlank
(
message
=
"结算主体编码不能为空"
)
@NotBlank
(
message
=
"结算主体编码不能为空"
)
@Length
(
max
=
32
,
message
=
"结算主体编码不能超过32个字符"
)
@Length
(
max
=
32
,
message
=
"结算主体编码不能超过32个字符"
)
@ExcelProperty
(
"结算主体编码"
)
@ExcelAttribute
(
name
=
"结算主体编码"
,
isNotEmpty
=
true
,
errorInfo
=
"结算主体编码不能为空"
,
maxLength
=
32
)
private
String
departNo
;
@ExcelProperty
(
value
=
"结算主体编码"
)
/**
private
String
departNo
;
* 结算主体名称
/**
*/
* 结算主体名称
@ExcelAttribute
(
name
=
"结算主体名称"
,
isNotEmpty
=
true
,
errorInfo
=
"结算主体名称不能为空"
,
maxLength
=
50
)
*/
@NotBlank
(
message
=
"结算主体名称不能为空"
)
@NotBlank
(
message
=
"结算主体名称不能为空"
)
@Length
(
max
=
50
,
message
=
"结算主体名称不能超过50个字符"
)
@Length
(
max
=
50
,
message
=
"结算主体名称不能超过50个字符"
)
@ExcelProperty
(
"结算主体名称"
)
@ExcelAttribute
(
name
=
"结算主体名称"
,
isNotEmpty
=
true
,
errorInfo
=
"结算主体名称不能为空"
,
maxLength
=
50
)
private
String
departName
;
@ExcelProperty
(
value
=
"结算主体名称"
)
/**
private
String
departName
;
* 薪酬月份
/**
*/
* 工资月份
@ExcelAttribute
(
name
=
"薪酬月份"
,
isNotEmpty
=
true
,
errorInfo
=
"薪酬月份不能为空"
)
*/
@NotBlank
(
message
=
"薪酬月份不能为空"
)
@NotNull
(
message
=
"工资月份不能为空"
)
@ExcelProperty
(
"薪酬月份"
)
@ExcelAttribute
(
name
=
"工资月份"
,
isNotEmpty
=
true
,
errorInfo
=
"工资月份不能为空"
)
private
Integer
salaryMonth
;
@ExcelProperty
(
value
=
"工资月份"
)
/**
private
Integer
salaryMonth
;
* 社保月份
/**
*/
* 结算月份
@ExcelAttribute
(
name
=
"社保月份"
,
isNotEmpty
=
true
,
errorInfo
=
"社保月份不能为空"
)
*/
@NotBlank
(
message
=
"社保月份不能为空"
)
@NotNull
(
message
=
"结算月份不能为空"
)
@ExcelProperty
(
"社保月份"
)
@ExcelAttribute
(
name
=
"结算月份"
,
isNotEmpty
=
true
,
errorInfo
=
"结算月份不能为空"
)
private
Integer
socialMonth
;
@ExcelProperty
(
value
=
"结算月份"
)
/**
private
Integer
settleMonth
;
* 公积金月份
/**
*/
* 社保月份
@ExcelAttribute
(
name
=
"公积金月份"
,
isNotEmpty
=
true
,
errorInfo
=
"公积金月份不能为空"
)
*/
@NotBlank
(
message
=
"公积金月份不能为空"
)
@NotNull
(
message
=
"社保月份不能为空"
)
@ExcelProperty
(
"公积金月份"
)
@ExcelAttribute
(
name
=
"社保月份"
,
isNotEmpty
=
true
,
errorInfo
=
"社保月份不能为空"
)
private
Integer
fundMonth
;
@ExcelProperty
(
value
=
"社保月份"
)
/**
private
Integer
socialMonth
;
* 社保优先级0:生成月;1:缴纳月
/**
*/
* 公积金月份
@ExcelAttribute
(
name
=
"社保优先级0:生成月;1:缴纳月"
,
isNotEmpty
=
true
,
errorInfo
=
"社保优先级0:生成月;1:缴纳月不能为空"
)
*/
@NotBlank
(
message
=
"社保优先级0:生成月;1:缴纳月不能为空"
)
@NotNull
(
message
=
"公积金月份不能为空"
)
@ExcelProperty
(
"社保优先级0:生成月;1:缴纳月"
)
@ExcelAttribute
(
name
=
"公积金月份"
,
isNotEmpty
=
true
,
errorInfo
=
"公积金月份不能为空"
)
private
Integer
socialPriority
;
@ExcelProperty
(
value
=
"公积金月份"
)
/**
private
Integer
fundMonth
;
* 公积金优先级0:生成月;1:缴纳月
/**
*/
* 社保优先级
@ExcelAttribute
(
name
=
"公积金优先级0:生成月;1:缴纳月"
,
isNotEmpty
=
true
,
errorInfo
=
"公积金优先级0:生成月;1:缴纳月不能为空"
)
*/
@NotBlank
(
message
=
"公积金优先级0:生成月;1:缴纳月不能为空"
)
@NotNull
(
message
=
"社保优先级不能为空"
)
@ExcelProperty
(
"公积金优先级0:生成月;1:缴纳月"
)
@ExcelAttribute
(
name
=
"社保优先级"
,
isNotEmpty
=
true
,
errorInfo
=
"社保优先级不能为空"
)
private
Integer
fundPriority
;
@ExcelProperty
(
value
=
"社保优先级(0:生成;1:缴纳)"
)
/**
private
Integer
socialPriority
;
* 发放方式(0现金/1银行)
/**
*/
* 公积金优先级
@ExcelAttribute
(
name
=
"发放方式(0现金/1银行)"
,
isNotEmpty
=
true
,
errorInfo
=
"发放方式(0现金/1银行)不能为空"
)
*/
@NotBlank
(
message
=
"发放方式(0现金/1银行)不能为空"
)
@NotNull
(
message
=
"公积金优先级不能为空"
)
@ExcelProperty
(
"发放方式(0现金/1银行)"
)
@ExcelAttribute
(
name
=
"公积金优先级"
,
isNotEmpty
=
true
,
errorInfo
=
"公积金优先级不能为空"
)
private
Integer
grantType
;
@ExcelProperty
(
value
=
"公积金优先级(0:生成;1:缴纳)"
)
private
Integer
fundPriority
;
/**
* 发放方式
*/
@NotNull
(
message
=
"发放方式不能为空"
)
@ExcelAttribute
(
name
=
"发放方式"
,
isNotEmpty
=
true
,
errorInfo
=
"发放方式不能为空"
)
@ExcelProperty
(
value
=
"发放方式(0:现金;1:转账)"
)
private
Integer
grantType
;
/**
* 年终奖扣税方案
*/
@NotNull
(
message
=
"年终奖扣税方案不能为空"
)
@ExcelAttribute
(
name
=
"年终奖扣税方案"
,
errorInfo
=
"年终奖扣税方案不能为空"
)
@ExcelProperty
(
value
=
"年终奖扣税方案(0:合并;1:单独;2:自动计算)"
)
private
Integer
annualBonusType
;
}
}
yifu-salary/yifu-salary-api/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/entity/TMinSalary.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
entity
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
entity
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.baomidou.mybatisplus.extension.activerecord.Model
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
lombok.EqualsAndHashCode
;
import
org.hibernate.validator.constraints.Length
;
import
org.hibernate.validator.constraints.Length
;
import
javax.validation.constraints.NotBlank
;
import
javax.validation.constraints.NotBlank
;
import
java.util.Date
;
import
javax.validation.constraints.NotNull
;
import
java.time.LocalDate
;
import
java.time.LocalDateTime
;
/**
/**
*
最低工资配置-薪资配置4
*
各地市最低工资标准
*
*
* @author hgw
* @author hgw
* @date 20
22-08-05 11:40:14
* @date 20
19-10-15 21:45:23
*/
*/
@Data
@Data
@TableName
(
"t_min_salary"
)
@EqualsAndHashCode
(
callSuper
=
true
)
@EqualsAndHashCode
(
callSuper
=
true
)
@Schema
(
description
=
"最低工资配置-薪资配置4"
)
@TableName
(
"t_min_salary"
)
public
class
TMinSalary
extends
BaseEntity
{
@Tag
(
name
=
"薪资配置-最低工资配置"
)
public
class
TMinSalary
extends
Model
<
TMinSalary
>
{
/**
private
static
final
long
serialVersionUID
=
1L
;
* id
/**
*/
* id
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
*/
@ExcelProperty
(
"id"
)
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
private
String
id
;
@ExcelProperty
(
value
=
"id"
)
/**
private
String
id
;
* 省
/**
*/
* 省
@ExcelAttribute
(
name
=
"省"
)
*/
@ExcelProperty
(
"省"
)
@ExcelAttribute
(
name
=
"省"
)
private
Integer
province
;
@ExcelProperty
(
value
=
"省"
)
/**
private
Integer
province
;
* 市
/**
*/
* 市
@ExcelAttribute
(
name
=
"市"
)
*/
@ExcelProperty
(
"市"
)
@ExcelAttribute
(
name
=
"市"
)
private
Integer
city
;
@ExcelProperty
(
value
=
"市"
)
/**
private
Integer
city
;
* 县
/**
*/
* 县
@ExcelAttribute
(
name
=
"县"
)
*/
@ExcelProperty
(
"县"
)
@ExcelAttribute
(
name
=
"县"
)
private
Integer
town
;
@ExcelProperty
(
value
=
"县"
)
/**
private
Integer
town
;
* 最低工资标准
/**
*/
* 最低工资标准
@ExcelAttribute
(
name
=
"最低工资标准"
,
isNotEmpty
=
true
,
errorInfo
=
"最低工资标准不能为空"
,
maxLength
=
11
)
*/
@NotBlank
(
message
=
"最低工资标准不能为空"
)
@NotBlank
(
message
=
"最低工资标准不能为空"
)
@Length
(
max
=
11
,
message
=
"最低工资标准不能超过11个字符"
)
@Length
(
max
=
11
,
message
=
"最低工资标准不能超过11个字符"
)
@ExcelProperty
(
"最低工资标准"
)
@ExcelAttribute
(
name
=
"最低工资标准"
,
isNotEmpty
=
true
,
errorInfo
=
"最低工资标准不能为空"
,
maxLength
=
11
)
private
String
salaryBase
;
@ExcelProperty
(
value
=
"最低工资标准"
)
/**
private
String
salaryBase
;
* 1.启用 2.停用
/**
*/
* 1.启用 2.停用
@ExcelAttribute
(
name
=
"1.启用 2.停用"
,
isNotEmpty
=
true
,
errorInfo
=
"1.启用 2.停用不能为空"
)
*/
@NotBlank
(
message
=
"1.启用 2.停用不能为空"
)
@NotNull
(
message
=
"1.启用 2.停用不能为空"
)
@ExcelProperty
(
"1.启用 2.停用"
)
@ExcelAttribute
(
name
=
"1.启用 2.停用"
,
isNotEmpty
=
true
,
errorInfo
=
"1.启用 2.停用不能为空"
)
private
Integer
status
;
@ExcelProperty
(
value
=
"1.启用 2.停用"
)
/**
private
Integer
status
;
* 起始时间
/**
*/
* 起始时间
@ExcelAttribute
(
name
=
"起始时间"
,
isDate
=
true
)
*/
@ExcelProperty
(
"起始时间"
)
@ExcelAttribute
(
name
=
"起始时间"
)
private
Date
startDate
;
@ExcelProperty
(
value
=
"起始时间"
)
/**
private
LocalDate
startDate
;
* 终止时间
/**
*/
* 终止时间
@ExcelAttribute
(
name
=
"终止时间"
,
isDate
=
true
)
*/
@ExcelProperty
(
"终止时间"
)
@ExcelAttribute
(
name
=
"终止时间"
)
private
Date
endDate
;
@ExcelProperty
(
value
=
"终止时间"
)
private
LocalDate
endDate
;
/**
* 创建人
*/
@Length
(
max
=
32
,
message
=
"创建人不能超过32个字符"
)
@ExcelAttribute
(
name
=
"创建人"
,
maxLength
=
32
)
@ExcelProperty
(
value
=
"创建人"
)
private
String
createUser
;
/**
* 创建时间
*/
@ExcelAttribute
(
name
=
"创建时间"
)
@ExcelProperty
(
value
=
"创建时间"
)
private
LocalDateTime
createDate
;
}
}
yifu-salary/yifu-salary-api/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/entity/TOwnDept.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
entity
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
entity
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.baomidou.mybatisplus.extension.activerecord.Model
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
io.swagger.v3.oas.annotations.
media.Schema
;
import
io.swagger.v3.oas.annotations.
tags.Tag
;
import
lombok.Data
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.hibernate.validator.constraints.Length
;
import
org.hibernate.validator.constraints.Length
;
import
javax.validation.constraints.NotBlank
;
/**
/**
* 自有员工所在结算主体大全表
* 自有员工所在结算主体大全表
*
*
* @author hgw
* @author hgw
* @date 202
2-08-05 11:40:1
4
* @date 202
1-11-02 17:29:5
4
*/
*/
@Data
@Data
@EqualsAndHashCode
(
callSuper
=
true
)
@TableName
(
"t_own_dept"
)
@TableName
(
"t_own_dept"
)
@
Schema
(
description
=
"自有员工所在结算主体大全表"
)
@
Tag
(
name
=
"自有员工所在结算主体大全表"
)
public
class
TOwnDept
{
public
class
TOwnDept
extends
Model
<
TOwnDept
>
{
private
static
final
long
serialVersionUID
=
1L
;
/**
/**
*
id
*
*/
*/
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
@ExcelProperty
(
"id
"
)
@ExcelProperty
(
value
=
"
"
)
private
Integer
id
;
private
Integer
id
;
/**
/**
* 结算主体id
* 结算主体id
*/
*/
@
ExcelAttribute
(
name
=
"结算主体id"
,
maxLength
=
32
)
@
NotBlank
(
message
=
"结算主体id不能为空"
)
@Length
(
max
=
32
,
message
=
"结算主体id不能超过32个字符"
)
@Length
(
max
=
32
,
message
=
"结算主体id不能超过32个字符"
)
@ExcelProperty
(
"结算主体id"
)
@ExcelAttribute
(
name
=
"结算主体id"
,
isNotEmpty
=
true
,
errorInfo
=
"结算主体id不能为空"
,
maxLength
=
32
)
@ExcelProperty
(
value
=
"结算主体id"
)
private
String
deptId
;
private
String
deptId
;
/**
/**
* 结算主体编码
* 结算主体编码
*/
*/
@ExcelAttribute
(
name
=
"结算主体编码"
,
maxLength
=
50
)
@Length
(
max
=
50
,
message
=
"结算主体编码不能超过50个字符"
)
@Length
(
max
=
50
,
message
=
"结算主体编码不能超过50个字符"
)
@ExcelProperty
(
"结算主体编码"
)
@ExcelAttribute
(
name
=
"结算主体编码"
,
maxLength
=
50
)
@ExcelProperty
(
value
=
"结算主体编码"
)
private
String
deptNo
;
private
String
deptNo
;
/**
/**
* 结算主体名称
* 结算主体名称
*/
*/
@ExcelAttribute
(
name
=
"结算主体名称"
,
maxLength
=
50
)
@Length
(
max
=
50
,
message
=
"结算主体名称不能超过50个字符"
)
@Length
(
max
=
50
,
message
=
"结算主体名称不能超过50个字符"
)
@ExcelProperty
(
"结算主体名称"
)
@ExcelAttribute
(
name
=
"结算主体名称"
,
maxLength
=
50
)
@ExcelProperty
(
value
=
"结算主体名称"
)
private
String
deptName
;
private
String
deptName
;
/**
/**
* 客户名称
* 客户名称
*/
*/
@ExcelAttribute
(
name
=
"客户名称"
,
maxLength
=
50
)
@Length
(
max
=
50
,
message
=
"客户名称不能超过50个字符"
)
@Length
(
max
=
50
,
message
=
"客户名称不能超过50个字符"
)
@ExcelProperty
(
"客户名称"
)
@ExcelAttribute
(
name
=
"客户名称"
,
maxLength
=
50
)
@ExcelProperty
(
value
=
"客户名称"
)
private
String
unitName
;
private
String
unitName
;
}
}
yifu-salary/yifu-salary-api/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/entity/TSalaryConfigStandard.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
entity
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
entity
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.baomidou.mybatisplus.extension.activerecord.Model
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
lombok.EqualsAndHashCode
;
import
org.hibernate.validator.constraints.Length
;
import
org.hibernate.validator.constraints.Length
;
import
javax.validation.constraints.NotBlank
;
import
javax.validation.constraints.NotBlank
;
import
java.io.Serializable
;
import
java.time.LocalDateTime
;
/**
/**
*
工资报表配置-薪资配置6
*
薪资识别配置(标准模板)
*
*
* @author hgw
* @author hgw
* @date 20
22-08-05 11:40:14
* @date 20
19-07-30 15:00:05
*/
*/
@Data
@Data
@TableName
(
"t_salary_config_standard"
)
@EqualsAndHashCode
(
callSuper
=
true
)
@EqualsAndHashCode
(
callSuper
=
true
)
@Schema
(
description
=
"工资报表配置-薪资配置6"
)
@TableName
(
"t_salary_config_standard"
)
public
class
TSalaryConfigStandard
extends
BaseEntity
{
@Tag
(
name
=
"薪资识别配置(标准模板)"
)
public
class
TSalaryConfigStandard
extends
Model
<
TSalaryConfigStandard
>
implements
Serializable
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 主键
*/
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
@ExcelProperty
(
value
=
"主键"
)
private
String
id
;
/**
* 中文名(Excel表头)
*/
@ExcelProperty
(
value
=
"中文名(Excel表头)"
)
@Length
(
max
=
32
,
message
=
"中文名(Excel表头)不能超过32个字符"
)
@NotBlank
(
message
=
"中文名(Excel表头)不能为空"
)
@ExcelAttribute
(
name
=
"中文名(Excel表头)"
,
isNotEmpty
=
true
,
errorInfo
=
"中文名(Excel表头)不能为空"
,
maxLength
=
32
)
private
String
cnName
;
/**
* 数据库字段名
*/
@ExcelProperty
(
value
=
"数据库字段名"
)
@Length
(
max
=
32
,
message
=
"数据库字段名不能超过32个字符"
)
@ExcelAttribute
(
name
=
"数据库字段名"
,
maxLength
=
32
)
private
String
dbFiedName
;
/**
* JAVA属性字段名
*/
@ExcelProperty
(
value
=
"JAVA属性字段名"
)
@Length
(
max
=
32
,
message
=
"JAVA属性字段名不能超过32个字符"
)
@ExcelAttribute
(
name
=
"JAVA属性字段名"
,
maxLength
=
32
)
private
String
javaFiedName
;
/**
* 模板类型(数据字典)
*/
@ExcelProperty
(
value
=
"模板类型(数据字典)"
)
@Length
(
max
=
32
,
message
=
"模板类型(数据字典)不能超过32个字符"
)
@NotBlank
(
message
=
"模板类型(数据字典)不能为空"
)
@ExcelAttribute
(
name
=
"模板类型(数据字典)"
,
isNotEmpty
=
true
,
errorInfo
=
"模板类型(数据字典)不能为空"
,
maxLength
=
32
)
private
String
modelType
;
/**
* 是否是必须
*/
@ExcelProperty
(
value
=
"是否是必须(0:不是;1:必填)"
)
@NotBlank
(
message
=
"是否是必须不能为空"
)
@ExcelAttribute
(
name
=
"是否是必须"
,
isNotEmpty
=
true
,
errorInfo
=
"是否是必须不能为空"
)
private
String
isMustNeed
;
/**
* 是否进行计算扣税:1:计算;0:不计算
*/
@ExcelProperty
(
value
=
"是否进行计算扣税:1:计算;0:不计算"
)
@NotBlank
(
message
=
"是否进行计算扣税不能为空"
)
@ExcelAttribute
(
name
=
"是否进行计算扣税"
,
isNotEmpty
=
true
,
errorInfo
=
"是否进行计算扣税不能为空"
)
private
Integer
isTax
;
/**
* 创建人
*/
@ExcelProperty
(
value
=
"创建人"
)
@Length
(
max
=
32
,
message
=
"创建人不能超过32个字符"
)
@NotBlank
(
message
=
"创建人不能为空"
)
@ExcelAttribute
(
name
=
"创建人"
,
isNotEmpty
=
true
,
errorInfo
=
"创建人不能为空"
,
maxLength
=
32
)
private
String
createUser
;
/**
* 创建时间
*/
@ExcelProperty
(
value
=
"创建时间"
)
@NotBlank
(
message
=
"创建时间不能为空"
)
@ExcelAttribute
(
name
=
"创建时间"
,
isNotEmpty
=
true
,
errorInfo
=
"创建时间不能为空"
)
private
LocalDateTime
createTime
;
/**
/**
* 主键
* 排序项
*/
*/
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
@ExcelProperty
(
value
=
"排序项"
)
@ExcelProperty
(
"主键"
)
@ExcelAttribute
(
name
=
"排序项"
,
maxLength
=
32
)
private
String
id
;
private
String
orderLine
;
/**
* 中文名(Excel表头)
*/
@ExcelAttribute
(
name
=
"中文名(Excel表头)"
,
isNotEmpty
=
true
,
errorInfo
=
"中文名(Excel表头)不能为空"
,
maxLength
=
32
)
@NotBlank
(
message
=
"中文名(Excel表头)不能为空"
)
@Length
(
max
=
32
,
message
=
"中文名(Excel表头)不能超过32个字符"
)
@ExcelProperty
(
"中文名(Excel表头)"
)
private
String
cnName
;
/**
* 数据库字段名
*/
@ExcelAttribute
(
name
=
"数据库字段名"
,
maxLength
=
32
)
@Length
(
max
=
32
,
message
=
"数据库字段名不能超过32个字符"
)
@ExcelProperty
(
"数据库字段名"
)
private
String
dbFiedName
;
/**
* JAVA属性字段名
*/
@ExcelAttribute
(
name
=
"JAVA属性字段名"
,
maxLength
=
32
)
@Length
(
max
=
32
,
message
=
"JAVA属性字段名不能超过32个字符"
)
@ExcelProperty
(
"JAVA属性字段名"
)
private
String
javaFiedName
;
/**
* 模板类型(数据字典)
*/
@ExcelAttribute
(
name
=
"模板类型(数据字典)"
,
isNotEmpty
=
true
,
errorInfo
=
"模板类型(数据字典)不能为空"
,
maxLength
=
32
)
@NotBlank
(
message
=
"模板类型(数据字典)不能为空"
)
@Length
(
max
=
32
,
message
=
"模板类型(数据字典)不能超过32个字符"
)
@ExcelProperty
(
"模板类型(数据字典)"
)
private
String
modelType
;
/**
* 是否是必须
*/
@ExcelAttribute
(
name
=
"是否是必须"
,
isNotEmpty
=
true
,
errorInfo
=
"是否是必须不能为空"
,
maxLength
=
1
)
@NotBlank
(
message
=
"是否是必须不能为空"
)
@Length
(
max
=
1
,
message
=
"是否是必须不能超过1个字符"
)
@ExcelProperty
(
"是否是必须"
)
private
String
isMustNeed
;
/**
* 是否进行计算扣税:1:计算;0:不计算
*/
@ExcelAttribute
(
name
=
"是否进行计算扣税:1:计算;0:不计算"
,
isNotEmpty
=
true
,
errorInfo
=
"是否进行计算扣税:1:计算;0:不计算不能为空"
)
@NotBlank
(
message
=
"是否进行计算扣税:1:计算;0:不计算不能为空"
)
@ExcelProperty
(
"是否进行计算扣税:1:计算;0:不计算"
)
private
Integer
isTax
;
/**
* 排序项
*/
@ExcelAttribute
(
name
=
"排序项"
)
@ExcelProperty
(
"排序项"
)
private
Integer
orderLine
;
}
}
yifu-salary/yifu-salary-api/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/entity/TSalaryTaxConfig.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
entity
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
entity
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.baomidou.mybatisplus.extension.activerecord.Model
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
io.swagger.v3.oas.annotations.
media.Schema
;
import
io.swagger.v3.oas.annotations.
tags.Tag
;
import
lombok.Data
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
org.hibernate.validator.constraints.Length
;
import
org.hibernate.validator.constraints.Length
;
import
javax.validation.constraints.NotBlank
;
import
javax.validation.constraints.NotBlank
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
/**
/**
*
所得税配置-薪资配置3
*
个税比例及速算扣除数的配置表
*
*
* @author hgw
* @author hgw
* @date 20
22-08-05 11:40:14
* @date 20
19-07-30 15:00:05
*/
*/
@Data
@Data
@EqualsAndHashCode
(
callSuper
=
true
)
@TableName
(
"t_salary_tax_config"
)
@TableName
(
"t_salary_tax_config"
)
@Schema
(
description
=
"所得税配置-薪资配置3"
)
@Tag
(
name
=
"薪资配置-所得税配置"
)
public
class
TSalaryTaxConfig
{
public
class
TSalaryTaxConfig
extends
Model
<
TSalaryTaxConfig
>
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* 主键
*/
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
@ExcelProperty
(
value
=
"主键"
)
private
String
id
;
/**
* 累计预扣预缴应纳税所得额说明
*/
@ExcelProperty
(
value
=
"累计预扣预缴应纳税所得额说明"
)
@Length
(
max
=
32
,
message
=
"累计预扣预缴应纳税所得额说明不能超过32个字符"
)
@ExcelAttribute
(
name
=
"累计预扣预缴应纳税所得额说明"
,
maxLength
=
32
)
private
String
taxableIncomeRemark
;
/**
* 预扣率(%)
*/
@ExcelProperty
(
value
=
"预扣率(%)"
)
@NotBlank
(
message
=
"预扣率(%)不能为空"
)
@ExcelAttribute
(
name
=
"预扣率(%)"
,
isNotEmpty
=
true
,
errorInfo
=
"预扣率(%)不能为空"
)
private
Integer
withholdingRate
;
/**
* 速算扣除数
*/
@ExcelProperty
(
value
=
"速算扣除数"
)
@NotBlank
(
message
=
"速算扣除数不能为空"
)
@ExcelAttribute
(
name
=
"速算扣除数"
,
isNotEmpty
=
true
,
errorInfo
=
"速算扣除数不能为空"
)
private
BigDecimal
quickDeducation
;
/**
* 最小区间值
*/
@ExcelProperty
(
value
=
"最小区间值"
)
@NotBlank
(
message
=
"最小区间值不能为空"
)
@ExcelAttribute
(
name
=
"最小区间值"
,
isNotEmpty
=
true
,
errorInfo
=
"最小区间值不能为空"
)
private
BigDecimal
minIncome
;
/**
* 最大区间值
*/
@ExcelProperty
(
value
=
"最大区间值"
)
@NotBlank
(
message
=
"最大区间值不能为空"
)
@ExcelAttribute
(
name
=
"最大区间值"
,
isNotEmpty
=
true
,
errorInfo
=
"最大区间值不能为空"
)
private
BigDecimal
maxIncome
;
/**
* 等级
*/
@ExcelProperty
(
value
=
"等级"
)
@NotBlank
(
message
=
"等级不能为空"
)
@ExcelAttribute
(
name
=
"等级"
,
isNotEmpty
=
true
,
errorInfo
=
"等级不能为空"
)
private
Integer
level
;
/**
* 类型:0:工资;1:年终奖
*/
@ExcelProperty
(
value
=
"类型:0:工资;1:年终奖"
)
@NotBlank
(
message
=
"类型不能为空"
)
@ExcelAttribute
(
name
=
"类型"
,
isNotEmpty
=
true
,
errorInfo
=
"类型不能为空"
)
private
Integer
type
;
/**
/**
* 主键
* 个税起征点或年终奖个税临界值
*/
*/
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
@ExcelProperty
(
value
=
"个税起征点或年终奖个税临界值"
)
@ExcelProperty
(
"主键"
)
@ExcelAttribute
(
name
=
"个税起征点或年终奖个税临界值"
)
private
String
id
;
private
BigDecimal
startPoint
;
/**
* 累计预扣预缴应纳税所得额说明
*/
@ExcelAttribute
(
name
=
"累计预扣预缴应纳税所得额说明"
,
maxLength
=
32
)
@Length
(
max
=
32
,
message
=
"累计预扣预缴应纳税所得额说明不能超过32个字符"
)
@ExcelProperty
(
"累计预扣预缴应纳税所得额说明"
)
private
String
taxableIncomeRemark
;
/**
* 预扣率(%)
*/
@ExcelAttribute
(
name
=
"预扣率(%)"
,
isNotEmpty
=
true
,
errorInfo
=
"预扣率(%)不能为空"
)
@NotBlank
(
message
=
"预扣率(%)不能为空"
)
@ExcelProperty
(
"预扣率(%)"
)
private
Integer
withholdingRate
;
/**
* 速算扣除数
*/
@ExcelAttribute
(
name
=
"速算扣除数"
,
isNotEmpty
=
true
,
errorInfo
=
"速算扣除数不能为空"
)
@NotBlank
(
message
=
"速算扣除数不能为空"
)
@ExcelProperty
(
"速算扣除数"
)
private
BigDecimal
quickDeducation
;
/**
* 最小区间值
*/
@ExcelAttribute
(
name
=
"最小区间值"
,
isNotEmpty
=
true
,
errorInfo
=
"最小区间值不能为空"
)
@NotBlank
(
message
=
"最小区间值不能为空"
)
@ExcelProperty
(
"最小区间值"
)
private
BigDecimal
minIncome
;
/**
* 最大区间值
*/
@ExcelAttribute
(
name
=
"最大区间值"
,
isNotEmpty
=
true
,
errorInfo
=
"最大区间值不能为空"
)
@NotBlank
(
message
=
"最大区间值不能为空"
)
@ExcelProperty
(
"最大区间值"
)
private
BigDecimal
maxIncome
;
/**
* 等级
*/
@ExcelAttribute
(
name
=
"等级"
,
isNotEmpty
=
true
,
errorInfo
=
"等级不能为空"
)
@NotBlank
(
message
=
"等级不能为空"
)
@ExcelProperty
(
"等级"
)
private
Integer
level
;
/**
* 类型:0:工资;1:年终奖
*/
@ExcelAttribute
(
name
=
"类型:0:工资;1:年终奖"
,
isNotEmpty
=
true
,
errorInfo
=
"类型:0:工资;1:年终奖不能为空"
)
@NotBlank
(
message
=
"类型:0:工资;1:年终奖不能为空"
)
@ExcelProperty
(
"类型:0:工资;1:年终奖"
)
private
Integer
type
;
/**
* 个税起征点或年终奖个税临界值
*/
@ExcelAttribute
(
name
=
"个税起征点或年终奖个税临界值"
)
@ExcelProperty
(
"个税起征点或年终奖个税临界值"
)
private
BigDecimal
startPoint
;
}
}
yifu-salary/yifu-salary-api/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/entity/TSpecialDeducationSum.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
entity
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
entity
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.alibaba.excel.annotation.ExcelProperty
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.IdType
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableId
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.baomidou.mybatisplus.annotation.TableName
;
import
com.baomidou.mybatisplus.extension.activerecord.Model
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.ExcelAttribute
;
import
com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
io.swagger.v3.oas.annotations.media.Schema
;
import
lombok.Data
;
import
lombok.Data
;
import
lombok.EqualsAndHashCode
;
import
lombok.EqualsAndHashCode
;
import
org.hibernate.validator.constraints.Length
;
import
org.hibernate.validator.constraints.Length
;
import
javax.validation.constraints.NotBlank
;
import
javax.validation.constraints.NotBlank
;
import
java.math.BigDecimal
;
import
java.math.BigDecimal
;
import
java.time.LocalDateTime
;
/**
/**
* 专项扣除配置表-薪资配置5
* @Author fxj
*
* @Description 专项扣除
* @author hgw
* @Date 13:40 2022/8/6
* @date 2022-08-05 11:40:14
* @Param
*/
* @return
**/
@Data
@Data
@TableName
(
"t_special_deducation_sum"
)
@EqualsAndHashCode
(
callSuper
=
true
)
@EqualsAndHashCode
(
callSuper
=
true
)
@Schema
(
description
=
"专项扣除配置表-薪资配置5"
)
@TableName
(
"t_special_deducation_sum"
)
public
class
TSpecialDeducationSum
extends
BaseEntity
{
@Tag
(
name
=
"专项扣除"
)
public
class
TSpecialDeducationSum
extends
Model
<
TSpecialDeducationSum
>
{
private
static
final
long
serialVersionUID
=
1L
;
/**
* id
*/
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
@ExcelProperty
(
value
=
"id"
)
private
String
id
;
/**
* 创建人
*/
@NotBlank
(
message
=
"创建人不能为空"
)
@Length
(
max
=
32
,
message
=
"创建人不能超过32个字符"
)
@ExcelAttribute
(
name
=
"创建人"
,
isNotEmpty
=
true
,
errorInfo
=
"创建人不能为空"
,
maxLength
=
32
)
@ExcelProperty
(
value
=
"创建人"
)
private
String
createUser
;
/**
* 创建时间
*/
@NotBlank
(
message
=
"创建时间不能为空"
)
@ExcelAttribute
(
name
=
"创建时间"
,
isNotEmpty
=
true
,
errorInfo
=
"创建时间不能为空"
)
@ExcelProperty
(
value
=
"创建时间"
)
private
LocalDateTime
createTime
;
/**
* 导入月份
*/
@NotBlank
(
message
=
"导入月份不能为空"
)
@Length
(
max
=
6
,
message
=
"导入月份不能超过6个字符"
)
@ExcelAttribute
(
name
=
"导入月份"
,
isNotEmpty
=
true
,
errorInfo
=
"导入月份不能为空"
,
maxLength
=
6
)
@ExcelProperty
(
value
=
"导入月份"
)
private
String
createMonth
;
/**
* 申报单位
*/
@Length
(
max
=
20
,
message
=
"申报单位不能超过20个字符"
)
@ExcelAttribute
(
name
=
"申报单位"
,
maxLength
=
20
)
@ExcelProperty
(
value
=
"申报单位"
)
private
String
declareTitle
;
/**
* 工号
*/
@Length
(
max
=
50
,
message
=
"工号不能超过50个字符"
)
@ExcelAttribute
(
name
=
"工号"
,
maxLength
=
50
)
@ExcelProperty
(
value
=
"工号"
)
private
String
jobNumber
;
/**
* 姓名
*/
@Length
(
max
=
20
,
message
=
"姓名不能超过20个字符"
)
@ExcelAttribute
(
name
=
"姓名"
,
maxLength
=
20
)
@ExcelProperty
(
value
=
"姓名"
)
private
String
name
;
/**
* 证照类型
*/
@Length
(
max
=
20
,
message
=
"证照类型不能超过20个字符"
)
@ExcelAttribute
(
name
=
"证照类型"
,
maxLength
=
20
)
@ExcelProperty
(
value
=
"证照类型"
)
private
String
type
;
/**
* 证照号码
*/
@Length
(
max
=
20
,
message
=
"证照号码不能超过20个字符"
)
@ExcelAttribute
(
name
=
"证照号码"
,
maxLength
=
20
)
@ExcelProperty
(
value
=
"证照号码"
)
private
String
idNumber
;
/**
* 所得期间起
*/
@Length
(
max
=
20
,
message
=
"所得期间起不能超过20个字符"
)
@ExcelAttribute
(
name
=
"所得期间起"
,
maxLength
=
20
)
@ExcelProperty
(
value
=
"所得期间起"
)
private
String
createStart
;
/**
* 所得期间止
*/
@Length
(
max
=
20
,
message
=
"所得期间止不能超过20个字符"
)
@ExcelAttribute
(
name
=
"所得期间止"
,
maxLength
=
20
)
@ExcelProperty
(
value
=
"所得期间止"
)
private
String
createEnd
;
/**
* 本期收入
*/
@ExcelAttribute
(
name
=
"本期收入"
)
@ExcelProperty
(
value
=
"本期收入"
)
private
BigDecimal
currentIncome
;
/**
* 本期免税收入
*/
@ExcelAttribute
(
name
=
"本期免税收入"
)
@ExcelProperty
(
value
=
"本期免税收入"
)
private
BigDecimal
currentIncomeTaxFree
;
/**
* 基本医疗保险费
*/
@ExcelAttribute
(
name
=
"基本医疗保险费"
)
@ExcelProperty
(
value
=
"基本医疗保险费"
)
private
BigDecimal
insurancePension
;
/**
* 基本医疗保险费
*/
@ExcelAttribute
(
name
=
"基本医疗保险费"
)
@ExcelProperty
(
value
=
"基本医疗保险费"
)
private
BigDecimal
insuranceMedical
;
/**
* 失业保险费
*/
@ExcelAttribute
(
name
=
"失业保险费"
)
@ExcelProperty
(
value
=
"失业保险费"
)
private
BigDecimal
insuranceUnemployment
;
/**
* 住房公积金
*/
@ExcelAttribute
(
name
=
"住房公积金"
)
@ExcelProperty
(
value
=
"住房公积金"
)
private
BigDecimal
fund
;
/**
* 累计子女教育
*/
@ExcelAttribute
(
name
=
"累计子女教育"
)
@ExcelProperty
(
value
=
"累计子女教育"
)
private
BigDecimal
sumChildEduMoney
;
/**
* 累计住房租金
*/
@ExcelAttribute
(
name
=
"累计住房租金"
)
@ExcelProperty
(
value
=
"累计住房租金"
)
private
BigDecimal
sumHousingLoanMoney
;
/**
* 累计住房租金
*/
@ExcelAttribute
(
name
=
"累计住房租金"
)
@ExcelProperty
(
value
=
"累计住房租金"
)
private
BigDecimal
sumHousingRentMoney
;
/**
* 累计赡养老人
*/
@ExcelAttribute
(
name
=
"累计赡养老人"
)
@ExcelProperty
(
value
=
"累计赡养老人"
)
private
BigDecimal
sumSupportElderlyMoney
;
/**
* 累计继续教育
*/
@ExcelAttribute
(
name
=
"累计继续教育"
)
@ExcelProperty
(
value
=
"累计继续教育"
)
private
BigDecimal
sumContinuingEducationMoney
;
/**
/**
* id
* 累计婴幼儿照护费用
*/
* hgw 2022-4-2 11:05:44 樊青青提的需求
@TableId
(
type
=
IdType
.
ASSIGN_ID
)
*/
@ExcelProperty
(
"id"
)
@ExcelAttribute
(
name
=
"累计婴幼儿照护费用"
)
private
String
id
;
@ExcelProperty
(
value
=
"累计婴幼儿照护费用"
)
/**
private
BigDecimal
sumBabyMoney
;
* 导入月份
*/
@ExcelAttribute
(
name
=
"导入月份"
,
isNotEmpty
=
true
,
errorInfo
=
"导入月份不能为空"
,
maxLength
=
6
)
@NotBlank
(
message
=
"导入月份不能为空"
)
@Length
(
max
=
6
,
message
=
"导入月份不能超过6个字符"
)
@ExcelProperty
(
"导入月份"
)
private
String
createMonth
;
/**
* 申报单位
*/
@ExcelAttribute
(
name
=
"申报单位"
,
maxLength
=
20
)
@Length
(
max
=
20
,
message
=
"申报单位不能超过20个字符"
)
@ExcelProperty
(
"申报单位"
)
private
String
declareTitle
;
/**
* 工号
*/
@ExcelAttribute
(
name
=
"工号"
,
maxLength
=
50
)
@Length
(
max
=
50
,
message
=
"工号不能超过50个字符"
)
@ExcelProperty
(
"工号"
)
private
String
jobNumber
;
/**
* 姓名
*/
@ExcelAttribute
(
name
=
"姓名"
,
maxLength
=
20
)
@Length
(
max
=
20
,
message
=
"姓名不能超过20个字符"
)
@ExcelProperty
(
"姓名"
)
private
String
name
;
/**
* 证照类型
*/
@ExcelAttribute
(
name
=
"证照类型"
,
maxLength
=
20
)
@Length
(
max
=
20
,
message
=
"证照类型不能超过20个字符"
)
@ExcelProperty
(
"证照类型"
)
private
String
type
;
/**
* 证照号码
*/
@ExcelAttribute
(
name
=
"证照号码"
,
maxLength
=
20
)
@Length
(
max
=
20
,
message
=
"证照号码不能超过20个字符"
)
@ExcelProperty
(
"证照号码"
)
private
String
idNumber
;
/**
* 所得期间起
*/
@ExcelAttribute
(
name
=
"所得期间起"
,
maxLength
=
20
)
@Length
(
max
=
20
,
message
=
"所得期间起不能超过20个字符"
)
@ExcelProperty
(
"所得期间起"
)
private
String
createStart
;
/**
* 所得期间止
*/
@ExcelAttribute
(
name
=
"所得期间止"
,
maxLength
=
20
)
@Length
(
max
=
20
,
message
=
"所得期间止不能超过20个字符"
)
@ExcelProperty
(
"所得期间止"
)
private
String
createEnd
;
/**
* 本期收入
*/
@ExcelAttribute
(
name
=
"本期收入"
)
@ExcelProperty
(
"本期收入"
)
private
BigDecimal
currentIncome
;
/**
* 本期免税收入
*/
@ExcelAttribute
(
name
=
"本期免税收入"
)
@ExcelProperty
(
"本期免税收入"
)
private
BigDecimal
currentIncomeTaxFree
;
/**
* 基本医疗保险费
*/
@ExcelAttribute
(
name
=
"基本医疗保险费"
)
@ExcelProperty
(
"基本医疗保险费"
)
private
BigDecimal
insurancePension
;
/**
* 基本医疗保险费
*/
@ExcelAttribute
(
name
=
"基本医疗保险费"
)
@ExcelProperty
(
"基本医疗保险费"
)
private
BigDecimal
insuranceMedical
;
/**
* 失业保险费
*/
@ExcelAttribute
(
name
=
"失业保险费"
)
@ExcelProperty
(
"失业保险费"
)
private
BigDecimal
insuranceUnemployment
;
/**
* 住房公积金
*/
@ExcelAttribute
(
name
=
"住房公积金"
)
@ExcelProperty
(
"住房公积金"
)
private
BigDecimal
fund
;
/**
* 累计子女教育
*/
@ExcelAttribute
(
name
=
"累计子女教育"
)
@ExcelProperty
(
"累计子女教育"
)
private
BigDecimal
sumChildEduMoney
;
/**
* 累计住房租金
*/
@ExcelAttribute
(
name
=
"累计住房租金"
)
@ExcelProperty
(
"累计住房租金"
)
private
BigDecimal
sumHousingLoanMoney
;
/**
* 累计住房租金
*/
@ExcelAttribute
(
name
=
"累计住房租金"
)
@ExcelProperty
(
"累计住房租金"
)
private
BigDecimal
sumHousingRentMoney
;
/**
* 累计赡养老人
*/
@ExcelAttribute
(
name
=
"累计赡养老人"
)
@ExcelProperty
(
"累计赡养老人"
)
private
BigDecimal
sumSupportElderlyMoney
;
/**
* 累计继续教育
*/
@ExcelAttribute
(
name
=
"累计继续教育"
)
@ExcelProperty
(
"累计继续教育"
)
private
BigDecimal
sumContinuingEducationMoney
;
/**
* 累计婴幼儿照护费用
*/
@ExcelAttribute
(
name
=
"累计婴幼儿照护费用"
)
@ExcelProperty
(
"累计婴幼儿照护费用"
)
private
BigDecimal
sumBabyMoney
;
/**
* 企业(职业)年金
*/
@ExcelAttribute
(
name
=
"企业(职业)年金"
)
@ExcelProperty
(
"企业(职业)年金"
)
private
BigDecimal
enterpriseAnnuity
;
/**
* 商业健康保险
*/
@ExcelAttribute
(
name
=
"商业健康保险"
)
@ExcelProperty
(
"商业健康保险"
)
private
BigDecimal
takingRisks
;
/**
* 税延养老保险
*/
@ExcelAttribute
(
name
=
"税延养老保险"
)
@ExcelProperty
(
"税延养老保险"
)
private
BigDecimal
taxDeferredInsurance
;
/**
* 其他
*/
@ExcelAttribute
(
name
=
"其他"
)
@ExcelProperty
(
"其他"
)
private
BigDecimal
otherMoney
;
/**
* 准予扣除的捐赠额
*/
@ExcelAttribute
(
name
=
"准予扣除的捐赠额"
)
@ExcelProperty
(
"准予扣除的捐赠额"
)
private
BigDecimal
donationAmount
;
/**
* 税前扣除项目合计
*/
@ExcelAttribute
(
name
=
"税前扣除项目合计"
)
@ExcelProperty
(
"税前扣除项目合计"
)
private
BigDecimal
preTaxDeduction
;
/**
* 减免税额
*/
@ExcelAttribute
(
name
=
"减免税额"
)
@ExcelProperty
(
"减免税额"
)
private
BigDecimal
taxSavings
;
/**
* 减除费用
*/
@ExcelAttribute
(
name
=
"减除费用"
)
@ExcelProperty
(
"减除费用"
)
private
BigDecimal
costReduction
;
/**
* 已扣缴税额
*/
@ExcelAttribute
(
name
=
"已扣缴税额"
)
@ExcelProperty
(
"已扣缴税额"
)
private
BigDecimal
taxesWithheld
;
/**
* 备注
*/
@ExcelAttribute
(
name
=
"备注"
,
maxLength
=
500
)
@Length
(
max
=
500
,
message
=
"备注不能超过500个字符"
)
@ExcelProperty
(
"备注"
)
private
String
remark
;
/**
* 企业(职业)年金
*/
@ExcelAttribute
(
name
=
"企业(职业)年金"
)
@ExcelProperty
(
value
=
"企业(职业)年金"
)
private
BigDecimal
enterpriseAnnuity
;
/**
* 商业健康保险
*/
@ExcelAttribute
(
name
=
"商业健康保险"
)
@ExcelProperty
(
value
=
"商业健康保险"
)
private
BigDecimal
takingRisks
;
/**
* 税延养老保险
*/
@ExcelAttribute
(
name
=
"税延养老保险"
)
@ExcelProperty
(
value
=
"税延养老保险"
)
private
BigDecimal
taxDeferredInsurance
;
/**
* 其他
*/
@ExcelAttribute
(
name
=
"其他"
)
@ExcelProperty
(
value
=
"其他"
)
private
BigDecimal
otherMoney
;
/**
* 准予扣除的捐赠额
*/
@ExcelAttribute
(
name
=
"准予扣除的捐赠额"
)
@ExcelProperty
(
value
=
"准予扣除的捐赠额"
)
private
BigDecimal
donationAmount
;
/**
* 税前扣除项目合计
*/
@ExcelAttribute
(
name
=
"税前扣除项目合计"
)
@ExcelProperty
(
value
=
"税前扣除项目合计"
)
private
BigDecimal
preTaxDeduction
;
/**
* 减免税额
*/
@ExcelAttribute
(
name
=
"减免税额"
)
@ExcelProperty
(
value
=
"减免税额"
)
private
BigDecimal
taxSavings
;
/**
* 减除费用
*/
@ExcelAttribute
(
name
=
"减除费用"
)
@ExcelProperty
(
value
=
"减除费用"
)
private
BigDecimal
costReduction
;
/**
* 已扣缴税额
*/
@ExcelAttribute
(
name
=
"已扣缴税额"
)
@ExcelProperty
(
value
=
"已扣缴税额"
)
private
BigDecimal
taxesWithheld
;
/**
* 备注
*/
@Length
(
max
=
500
,
message
=
"备注不能超过500个字符"
)
@ExcelAttribute
(
name
=
"备注"
,
maxLength
=
500
)
@ExcelProperty
(
value
=
"备注"
)
private
String
remark
;
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/controller/TConfigSalaryController.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
controller
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
controller
;
import
com.baomidou.mybatisplus.core.conditions.query.QueryWrapper
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog
;
import
com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TConfigSalary
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TConfigSalary
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TConfigSalaryService
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TConfigSalaryService
;
import
com.yifu.cloud.plus.v1.yifu.salary.vo.TConfigSalarySearchVo
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
lombok.
Required
ArgsConstructor
;
import
lombok.
All
ArgsConstructor
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.*
;
import
javax.validation.Valid
;
import
java.util.List
;
import
java.util.List
;
/**
/**
* 项目基础薪酬配置-薪资配置2
* @Author fxj
*
* @Description 工资报账配置
* @author hgw
* @Date 13:32 2022/8/6
* @date 2022-08-05 11:40:14
* @Param
*/
* @return
**/
@RestController
@RestController
@
Required
ArgsConstructor
@
All
ArgsConstructor
@RequestMapping
(
"/tconfigsalary"
)
@RequestMapping
(
"/tconfigsalary"
)
@Tag
(
name
=
"
项目基础薪酬配置-薪资配置2管理
"
)
@Tag
(
name
=
"
薪资配置-普通工资配置
"
)
public
class
TConfigSalaryController
{
public
class
TConfigSalaryController
{
private
final
TConfigSalaryService
tConfigSalaryService
;
private
final
TConfigSalaryService
tConfigSalaryService
;
/**
* @param settleDepart 结算主体id
* @Description: 获取结算主体下的配置信息
* @Author: hgw
* @Date: 2019/9/12 17:05
* @return: com.yifu.cloud.v1.common.core.util.R
**/
@Operation
(
description
=
"获取结算主体下的配置列表"
)
@SysLog
(
"获取结算主体下的配置列表"
)
@PostMapping
(
"getTConfigSalaryList"
)
//@PreAuthorize("@pms.hasPermission('wxhr:salary_upload')")
public
R
getTConfigSalaryList
(
@RequestParam
String
settleDepart
)
{
TConfigSalary
configSalary
=
new
TConfigSalary
();
configSalary
.
setDepartId
(
settleDepart
);
QueryWrapper
<
TConfigSalary
>
queryWrapperCs
=
new
QueryWrapper
<>();
queryWrapperCs
.
setEntity
(
configSalary
);
List
<
TConfigSalary
>
configSalaryList
=
tConfigSalaryService
.
list
(
queryWrapperCs
);
return
new
R
<>(
configSalaryList
);
}
/**
/**
* 简单分页查询
* 简单分页查询
*
*
* @param page 分页对象
* @param page 分页对象
* @param tConfigSalary
项目基础薪酬配置-薪资配置2
* @param tConfigSalary
工资报账配置
* @return
* @return
*/
*/
@Operation
(
description
=
"简单分页查询"
)
@Operation
(
description
=
"简单分页查询"
)
@GetMapping
(
"/page"
)
@GetMapping
(
"/page"
)
public
R
<
IPage
<
TConfigSalary
>>
getTConfigSalaryPage
(
Page
<
TConfigSalary
>
page
,
TConfigSalary
SearchVo
tConfigSalary
)
{
public
R
<
IPage
<
TConfigSalary
>>
getTConfigSalaryPage
(
Page
<
TConfigSalary
>
page
,
TConfigSalary
tConfigSalary
)
{
return
new
R
<>(
tConfigSalaryService
.
getTConfigSalaryPage
(
page
,
tConfigSalary
));
return
new
R
<>(
tConfigSalaryService
.
getTConfigSalaryPage
(
page
,
tConfigSalary
));
}
}
/**
* 不分页查询
*
* @param tConfigSalary 项目基础薪酬配置-薪资配置2
* @return
*/
@Operation
(
summary
=
"不分页查询"
,
description
=
"不分页查询"
)
@PostMapping
(
"/noPage"
)
//@PreAuthorize("@pms.hasPermission('salary_tconfigsalary_get')" )
public
R
<
List
<
TConfigSalary
>>
getTConfigSalaryNoPage
(
@RequestBody
TConfigSalarySearchVo
tConfigSalary
)
{
return
R
.
ok
(
tConfigSalaryService
.
noPageDiy
(
tConfigSalary
));
}
/**
/**
* 通过id查询
项目基础薪酬配置-薪资配置2
* 通过id查询
单条记录
*
*
* @param id
id
* @param id
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"通过id查询"
,
description
=
"通过id查询:hasPermission('salary_tconfigsalary_get')
"
)
@Operation
(
description
=
"id查询
"
)
@GetMapping
(
"/{id}"
)
@GetMapping
(
"/{id}"
)
public
R
<
TConfigSalary
>
getById
(
@PathVariable
(
"id"
)
String
id
)
{
public
R
<
TConfigSalary
>
getById
(
@PathVariable
(
"id"
)
String
id
)
{
return
R
.
ok
(
tConfigSalaryService
.
getById
(
id
));
return
new
R
<>
(
tConfigSalaryService
.
getById
(
id
));
}
}
/**
/**
* 新增
项目基础薪酬配置-薪资配置2
* 新增
记录
*
*
* @param tConfigSalary
项目基础薪酬配置-薪资配置2
* @param tConfigSalary
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"新增项目基础薪酬配置-薪资配置2"
,
description
=
"新增项目基础薪酬配置-薪资配置2:hasPermission('salary_tconfigsalary_add')"
)
@Operation
(
description
=
"新增(wxhr:tconfigsalary_add)"
)
@SysLog
(
"新增项目基础薪酬配置-薪资配置2"
)
@PostMapping
@PostMapping
@PreAuthorize
(
"@pms.hasPermission('
salary_
tconfigsalary_add')"
)
@PreAuthorize
(
"@pms.hasPermission('
wxhr:
tconfigsalary_add')"
)
public
R
<
Boolean
>
save
(
@RequestBody
TConfigSalary
tConfigSalary
)
{
public
R
save
(
@Valid
@RequestBody
TConfigSalary
tConfigSalary
)
{
return
R
.
ok
(
tConfigSalaryService
.
save
(
tConfigSalary
));
return
new
R
<>
(
tConfigSalaryService
.
save
(
tConfigSalary
));
}
}
/**
/**
* 修改
项目基础薪酬配置-薪资配置2
* 修改
记录
*
*
* @param tConfigSalary
项目基础薪酬配置-薪资配置2
* @param tConfigSalary
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"修改项目基础薪酬配置-薪资配置2"
,
description
=
"修改项目基础薪酬配置-薪资配置2:hasPermission('salary_tconfigsalary_edit'
)"
)
@Operation
(
description
=
"修改(wxhr:tconfigsalary_edit
)"
)
@SysLog
(
"修改
项目基础薪酬配置-薪资配置2
"
)
@SysLog
(
"修改
工资报账配置
"
)
@PutMapping
@PutMapping
@PreAuthorize
(
"@pms.hasPermission('
salary_
tconfigsalary_edit')"
)
@PreAuthorize
(
"@pms.hasPermission('
wxhr:
tconfigsalary_edit')"
)
public
R
<
Boolean
>
updateById
(
@RequestBody
TConfigSalary
tConfigSalary
)
{
public
R
update
(
@RequestBody
TConfigSalary
tConfigSalary
)
{
return
R
.
ok
(
tConfigSalaryService
.
updateById
(
tConfigSalary
));
return
new
R
<>
(
tConfigSalaryService
.
updateById
(
tConfigSalary
));
}
}
/**
/**
* 通过id删除
项目基础薪酬配置-薪资配置2
* 通过id删除
一条记录
*
*
* @param id
id
* @param id
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"通过id删除项目基础薪酬配置-薪资配置2"
,
description
=
"通过id删除项目基础薪酬配置-薪资配置2:hasPermission('salary_tconfigsalary_del'
)"
)
@Operation
(
description
=
"删除(wxhr:tconfigsalary_del
)"
)
@SysLog
(
"
通过id删除项目基础薪酬配置-薪资配置2
"
)
@SysLog
(
"
删除工资报账配置
"
)
@DeleteMapping
(
"/{id}"
)
@DeleteMapping
(
"/{id}"
)
@PreAuthorize
(
"@pms.hasPermission('
salary_
tconfigsalary_del')"
)
@PreAuthorize
(
"@pms.hasPermission('
wxhr:
tconfigsalary_del')"
)
public
R
<
Boolean
>
removeById
(
@PathVariable
String
id
)
{
public
R
removeById
(
@PathVariable
String
id
)
{
return
R
.
ok
(
tConfigSalaryService
.
removeById
(
id
));
return
new
R
<>
(
tConfigSalaryService
.
removeById
(
id
));
}
}
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/controller/TMinSalaryController.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
controller
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
controller
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.core.vo.YifuUser
;
import
com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog
;
import
com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog
;
import
com.yifu.cloud.plus.v1.yifu.common.security.util.SecurityUtils
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TMinSalary
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TMinSalary
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TMinSalaryService
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TMinSalaryService
;
import
com.yifu.cloud.plus.v1.yifu.salary.vo.TMinSalarySearchVo
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
lombok.
Required
ArgsConstructor
;
import
lombok.
All
ArgsConstructor
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.*
;
import
java.util.List
;
import
javax.validation.Valid
;
import
java.time.LocalDateTime
;
/**
/**
* 最低工资配置-薪资配置4
* @Author fxj
*
* @Description 各地市最低工资标准
* @author hgw
* @Date 13:32 2022/8/6
* @date 2022-08-05 11:40:14
* @Param
*/
* @return
**/
@RestController
@RestController
@
Required
ArgsConstructor
@
All
ArgsConstructor
@RequestMapping
(
"/tminsalary"
)
@RequestMapping
(
"/tminsalary"
)
@Tag
(
name
=
"
最低工资配置-薪资配置4管理
"
)
@Tag
(
name
=
"
薪资配置-最低工资配置
"
)
public
class
TMinSalaryController
{
public
class
TMinSalaryController
{
private
final
TMinSalaryService
tMinSalaryService
;
private
final
TMinSalaryService
tMinSalaryService
;
/**
/**
* 简单分页查询
* 简单分页查询
*
*
* @param page 分页对象
* @param page 分页对象
* @param tMinSalary
最低工资配置-薪资配置4
* @param tMinSalary
各地市最低工资标准
* @return
* @return
*/
*/
@Operation
(
description
=
"简单分页查询"
)
@Operation
(
description
=
"简单分页查询"
)
@GetMapping
(
"/page"
)
@GetMapping
(
"/page"
)
public
R
<
IPage
<
TMinSalary
>>
getTMinSalaryPage
(
Page
<
TMinSalary
>
page
,
TMinSalary
SearchVo
tMinSalary
)
{
public
R
<
IPage
<
TMinSalary
>>
getTMinSalaryPage
(
Page
<
TMinSalary
>
page
,
TMinSalary
tMinSalary
)
{
return
new
R
<>(
tMinSalaryService
.
getTMinSalaryPage
(
page
,
tMinSalary
));
return
new
R
<>(
tMinSalaryService
.
getTMinSalaryPage
(
page
,
tMinSalary
));
}
}
/**
* 不分页查询
*
* @param tMinSalary 最低工资配置-薪资配置4
* @return
*/
@Operation
(
summary
=
"不分页查询"
,
description
=
"不分页查询"
)
@PostMapping
(
"/noPage"
)
//@PreAuthorize("@pms.hasPermission('salary_tminsalary_get')" )
public
R
<
List
<
TMinSalary
>>
getTMinSalaryNoPage
(
@RequestBody
TMinSalarySearchVo
tMinSalary
)
{
return
R
.
ok
(
tMinSalaryService
.
noPageDiy
(
tMinSalary
));
}
/**
/**
* 通过id查询
最低工资配置-薪资配置4
* 通过id查询
单条记录
*
*
* @param id
id
* @param id
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"通过id查询"
,
description
=
"通过id查询:hasPermission('salary_tminsalary_get')
"
)
@Operation
(
description
=
"id查询
"
)
@GetMapping
(
"/{id}"
)
@GetMapping
(
"/{id}"
)
public
R
<
TMinSalary
>
getById
(
@PathVariable
(
"id"
)
String
id
)
{
public
R
<
TMinSalary
>
getById
(
@PathVariable
(
"id"
)
String
id
)
{
return
R
.
ok
(
tMinSalaryService
.
getById
(
id
));
return
new
R
<>
(
tMinSalaryService
.
getById
(
id
));
}
}
/**
/**
* 新增
最低工资配置-薪资配置4
* 新增
记录
*
*
* @param tMinSalary
最低工资配置-薪资配置4
* @param tMinSalary
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"新增最低工资配置-薪资配置4"
,
description
=
"新增最低工资配置-薪资配置4:hasPermission('salary_tminsalary_add')"
)
@Operation
(
description
=
"新增(wxhr:tminsalary_add)"
)
@SysLog
(
"新增最低工资配置-薪资配置4"
)
@PostMapping
@PostMapping
@PreAuthorize
(
"@pms.hasPermission('salary_tminsalary_add')"
)
@PreAuthorize
(
"@pms.hasPermission('wxhr:tminsalary_add')"
)
public
R
<
Boolean
>
save
(
@RequestBody
TMinSalary
tMinSalary
)
{
public
R
save
(
@Valid
@RequestBody
TMinSalary
tMinSalary
)
{
return
R
.
ok
(
tMinSalaryService
.
save
(
tMinSalary
));
YifuUser
user
=
SecurityUtils
.
getUser
();
if
(
null
==
user
||
null
==
user
.
getId
())
{
return
R
.
failed
(
"获取登录用户信息失败!"
);
}
tMinSalary
.
setCreateDate
(
LocalDateTime
.
now
());
tMinSalary
.
setCreateUser
(
String
.
valueOf
(
user
.
getId
()));
return
new
R
<>(
tMinSalaryService
.
save
(
tMinSalary
));
}
}
/**
/**
* 修改
最低工资配置-薪资配置4
* 修改
记录
*
*
* @param tMinSalary
最低工资配置-薪资配置4
* @param tMinSalary
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"修改最低工资配置-薪资配置4"
,
description
=
"修改最低工资配置-薪资配置4:hasPermission('salary_tminsalary_edit'
)"
)
@Operation
(
description
=
"修改(wxhr:tminsalary_edit
)"
)
@SysLog
(
"修改
最低工资配置-薪资配置4
"
)
@SysLog
(
"修改
各地市最低工资标准
"
)
@PutMapping
@PutMapping
@PreAuthorize
(
"@pms.hasPermission('
salary_
tminsalary_edit')"
)
@PreAuthorize
(
"@pms.hasPermission('
wxhr:
tminsalary_edit')"
)
public
R
<
Boolean
>
updateById
(
@RequestBody
TMinSalary
tMinSalary
)
{
public
R
update
(
@RequestBody
TMinSalary
tMinSalary
)
{
return
R
.
ok
(
tMinSalaryService
.
updateById
(
tMinSalary
));
return
new
R
<>
(
tMinSalaryService
.
updateById
(
tMinSalary
));
}
}
/**
/**
* 通过id删除
最低工资配置-薪资配置4
* 通过id删除
一条记录
*
*
* @param id
id
* @param id
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"通过id删除最低工资配置-薪资配置4"
,
description
=
"通过id删除最低工资配置-薪资配置4:hasPermission('salary_tminsalary_del'
)"
)
@Operation
(
description
=
"删除(wxhr:tminsalary_del
)"
)
@SysLog
(
"
通过id删除最低工资配置-薪资配置4
"
)
@SysLog
(
"
删除各地市最低工资标准
"
)
@DeleteMapping
(
"/{id}"
)
@DeleteMapping
(
"/{id}"
)
@PreAuthorize
(
"@pms.hasPermission('
salary_
tminsalary_del')"
)
@PreAuthorize
(
"@pms.hasPermission('
wxhr:
tminsalary_del')"
)
public
R
<
Boolean
>
removeById
(
@PathVariable
String
id
)
{
public
R
removeById
(
@PathVariable
String
id
)
{
return
R
.
ok
(
tMinSalaryService
.
removeById
(
id
));
return
new
R
<>
(
tMinSalaryService
.
removeById
(
id
));
}
}
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/controller/TOwnDeptController.java
0 → 100644
View file @
72d3d523
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
controller
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TOwnDept
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TOwnDeptService
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
lombok.AllArgsConstructor
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.web.bind.annotation.*
;
import
javax.validation.Valid
;
/**
* @Author fxj
* @Description 自有员工所在结算主体大全表
* @Date 13:32 2022/8/6
* @Param
* @return
**/
@RestController
@AllArgsConstructor
@RequestMapping
(
"/towndept"
)
@Tag
(
name
=
"自有员工所在结算主体大全表"
)
public
class
TOwnDeptController
{
private
final
TOwnDeptService
tOwnDeptService
;
/**
* 简单分页查询
*
* @param page 分页对象
* @param tOwnDept 自有员工所在结算主体大全表
* @return
*/
@Operation
(
description
=
"简单分页查询"
)
@GetMapping
(
"/page"
)
public
R
<
IPage
<
TOwnDept
>>
getTOwnDeptPage
(
Page
<
TOwnDept
>
page
,
TOwnDept
tOwnDept
)
{
return
new
R
<>(
tOwnDeptService
.
getTOwnDeptPage
(
page
,
tOwnDept
));
}
/**
* 通过id查询单条记录
*
* @param id
* @return R
*/
@Operation
(
description
=
"id查询"
)
@GetMapping
(
"/{id}"
)
public
R
<
TOwnDept
>
getById
(
@PathVariable
(
"id"
)
Integer
id
)
{
return
new
R
<>(
tOwnDeptService
.
getById
(
id
));
}
/**
* 新增记录
*
* @param tOwnDept
* @return R
*/
@Operation
(
description
=
"新增(wxhr:towndept_add)"
)
@PostMapping
@PreAuthorize
(
"@pms.hasPermission('wxhr:towndept_add')"
)
public
R
<
Boolean
>
save
(
@Valid
@RequestBody
TOwnDept
tOwnDept
)
{
return
new
R
<>(
tOwnDeptService
.
save
(
tOwnDept
));
}
/**
* 修改记录
*
* @param tOwnDept
* @return R
*/
@Operation
(
description
=
"修改(wxhr:towndept_edit)"
)
@SysLog
(
"修改自有员工所在结算主体大全表"
)
@PutMapping
@PreAuthorize
(
"@pms.hasPermission('wxhr:towndept_edit')"
)
public
R
<
Boolean
>
update
(
@RequestBody
TOwnDept
tOwnDept
)
{
return
new
R
<>(
tOwnDeptService
.
updateById
(
tOwnDept
));
}
/**
* 通过id删除一条记录
*
* @param id
* @return R
*/
@Operation
(
description
=
"删除(wxhr:towndept_del)"
)
@SysLog
(
"删除自有员工所在结算主体大全表"
)
@DeleteMapping
(
"/{id}"
)
@PreAuthorize
(
"@pms.hasPermission('wxhr:towndept_del')"
)
public
R
<
Boolean
>
removeById
(
@PathVariable
Integer
id
)
{
return
new
R
<>(
tOwnDeptService
.
removeById
(
id
));
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/controller/TSalaryConfigStandardController.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
controller
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
controller
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.CommonConstants
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.Common
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.core.vo.YifuUser
;
import
com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog
;
import
com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog
;
import
com.yifu.cloud.plus.v1.yifu.common.security.util.SecurityUtils
;
import
com.yifu.cloud.plus.v1.yifu.salary.constants.SalaryConstants
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryConfigStandard
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryConfigStandard
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TSalaryConfigStandardService
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TSalaryConfigStandardService
;
import
com.yifu.cloud.plus.v1.yifu.salary.vo.TSalaryConfigStandardSearchVo
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
lombok.
Required
ArgsConstructor
;
import
lombok.
All
ArgsConstructor
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.*
;
import
java.time.LocalDateTime
;
import
java.util.List
;
import
java.util.List
;
/**
/**
* 工资报表配置-薪资配置6
* @Author fxj
*
* @Description 薪资识别配置(标准模板)
* @author hgw
* @Date 13:32 2022/8/6
* @date 2022-08-05 11:40:14
* @Param
*/
* @return
**/
@RestController
@RestController
@
Required
ArgsConstructor
@
All
ArgsConstructor
@RequestMapping
(
"/tsalaryconfigstandard"
)
@RequestMapping
(
"/tsalaryconfigstandard"
)
@Tag
(
name
=
"
工资报表配置-薪资配置6管理
"
)
@Tag
(
name
=
"
薪资识别配置(标准模板)
"
)
public
class
TSalaryConfigStandardController
{
public
class
TSalaryConfigStandardController
{
private
final
TSalaryConfigStandardService
tSalaryConfigStandardService
;
private
final
TSalaryConfigStandardService
tSalaryConfigStandardService
;
// 获取登录人信息为空
private
static
final
String
NO_USER
=
"获取登录人信息为空"
;
/**
/**
* 简单分页查询
* 简单分页查询
*
*
* @param page 分页对象
* @param page 分页对象
* @param tSalaryConfigStandard
工资报表配置-薪资配置6
* @param tSalaryConfigStandard
薪资识别配置(标准模板)
* @return
* @return
*/
*/
@Operation
(
description
=
"简单分页查询"
)
@Operation
(
description
=
"简单分页查询"
)
@GetMapping
(
"/page"
)
@GetMapping
(
"/page"
)
public
R
<
IPage
<
TSalaryConfigStandard
>>
getTSalaryConfigStandardPage
(
Page
<
TSalaryConfigStandard
>
page
,
TSalaryConfigStandard
SearchVo
tSalaryConfigStandard
)
{
public
R
<
IPage
<
TSalaryConfigStandard
>>
getTSalaryConfigStandardPage
(
Page
<
TSalaryConfigStandard
>
page
,
TSalaryConfigStandard
tSalaryConfigStandard
)
{
return
new
R
<>(
tSalaryConfigStandardService
.
getTSalaryConfigStandardPage
(
page
,
tSalaryConfigStandard
));
return
new
R
<>(
tSalaryConfigStandardService
.
getTSalaryConfigStandardPage
(
page
,
tSalaryConfigStandard
));
}
}
/**
/**
*
不分页查询
*
@param tSalaryConfigStandard
*
*
@Description: 获取列表
* @
param tSalaryConfigStandard 工资报表配置-薪资配置6
* @
Author: hgw
* @
return
* @
Date: 2021/1/7 11:39
*
/
*
@return: com.yifu.cloud.v1.common.core.util.R<java.util.List < com.yifu.cloud.v1.hrms.api.entity.TSalaryConfigStandard>>
@Operation
(
summary
=
"不分页查询"
,
description
=
"不分页查询"
)
**/
@
PostMapping
(
"/noPage
"
)
@
Operation
(
description
=
"获取配置列表
"
)
//@PreAuthorize("@pms.hasPermission('salary_tsalaryconfigstandard_get')"
)
@GetMapping
(
"/getTSalaryConfigStandardList"
)
public
R
<
List
<
TSalaryConfigStandard
>>
getTSalaryConfigStandard
NoPage
(
@RequestBody
TSalaryConfigStandardSearchVo
tSalaryConfigStandard
)
{
public
R
<
List
<
TSalaryConfigStandard
>>
getTSalaryConfigStandard
List
(
TSalaryConfigStandard
tSalaryConfigStandard
)
{
return
R
.
ok
(
tSalaryConfigStandardService
.
noPageDiy
(
tSalaryConfigStandard
));
return
new
R
<>(
tSalaryConfigStandardService
.
getTSalaryConfigStandardList
(
tSalaryConfigStandard
));
}
}
/**
/**
* 通过id查询
工资报表配置-薪资配置6
* 通过id查询
单条记录
*
*
* @param id
id
* @param id
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"通过id查询"
,
description
=
"通过id查询:hasPermission('salary_tsalaryconfigstandard_get')
"
)
@Operation
(
description
=
"id查询
"
)
@GetMapping
(
"/{id}"
)
@GetMapping
(
"/{id}"
)
public
R
<
TSalaryConfigStandard
>
getById
(
@PathVariable
(
"id"
)
String
id
)
{
public
R
<
TSalaryConfigStandard
>
getById
(
@PathVariable
(
"id"
)
String
id
)
{
return
R
.
ok
(
tSalaryConfigStandardService
.
getById
(
id
));
return
new
R
<>(
tSalaryConfigStandardService
.
getById
(
id
));
}
/**
* 新增记录
*
* @param tSalaryConfigStandard
* @return R
*/
@Operation
(
description
=
"查询薪资识别配置是否已存在"
)
@SysLog
(
"查询薪资识别配置是否已存在"
)
@PostMapping
(
"/findExistence"
)
public
R
<
String
>
findExistence
(
@RequestBody
TSalaryConfigStandard
tSalaryConfigStandard
)
{
if
(
tSalaryConfigStandard
!=
null
)
{
if
(
Common
.
isNotNull
(
tSalaryConfigStandard
.
getCnName
())
&&
Common
.
isNotNull
(
tSalaryConfigStandard
.
getDbFiedName
()))
{
IPage
<
TSalaryConfigStandard
>
scsPage
=
tSalaryConfigStandardService
.
getTSalaryConfigStandardPage
(
new
Page
(),
tSalaryConfigStandard
);
if
(
scsPage
!=
null
&&
scsPage
.
getTotal
()
>
CommonConstants
.
ZERO_INT
)
{
return
R
.
failed
(
"已存在配置"
);
}
else
{
return
R
.
ok
(
"可以保存"
);
}
}
else
{
return
R
.
failed
(
"查找的信息不全"
);
}
}
return
R
.
failed
(
"查找的信息不全"
);
}
}
/**
/**
* 新增
工资报表配置-薪资配置6
* 新增
记录
*
*
* @param tSalaryConfigStandard
工资报表配置-薪资配置6
* @param tSalaryConfigStandard
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"新增工资报表配置-薪资配置6"
,
description
=
"新增工资报表配置-薪资配置6:hasPermission('salary_tsalaryconfigstandard_add')
"
)
@Operation
(
description
=
"新增
"
)
@SysLog
(
"新增
工资报表配置-薪资配置6
"
)
@SysLog
(
"新增
薪资识别配置(标准模板)
"
)
@PostMapping
@PostMapping
@PreAuthorize
(
"@pms.hasPermission('
salary_
tsalaryconfigstandard_add')"
)
@PreAuthorize
(
"@pms.hasPermission('
wxhr:
tsalaryconfigstandard_add')"
)
public
R
<
Boolean
>
save
(
@RequestBody
TSalaryConfigStandard
tSalaryConfigStandard
)
{
public
R
<
Boolean
>
save
(
@RequestBody
TSalaryConfigStandard
tSalaryConfigStandard
)
{
return
R
.
ok
(
tSalaryConfigStandardService
.
save
(
tSalaryConfigStandard
));
YifuUser
user
=
SecurityUtils
.
getUser
();
if
(
null
==
user
||
null
==
user
.
getId
())
{
return
R
.
failed
(
NO_USER
);
}
// 填充个人代扣等java字段
this
.
setJavaFiedName
(
tSalaryConfigStandard
);
tSalaryConfigStandard
.
setCreateUser
(
String
.
valueOf
(
user
.
getId
()));
tSalaryConfigStandard
.
setCreateTime
(
LocalDateTime
.
now
());
tSalaryConfigStandard
.
setIsMustNeed
(
CommonConstants
.
ZERO_STRING
);
tSalaryConfigStandard
.
setModelType
(
CommonConstants
.
ONE_STRING
);
tSalaryConfigStandard
.
setIsTax
(
CommonConstants
.
ZERO_INT
);
return
new
R
<>(
tSalaryConfigStandardService
.
save
(
tSalaryConfigStandard
));
}
}
/**
/**
* 修改
工资报表配置-薪资配置6
* 修改
记录
*
*
* @param tSalaryConfigStandard
工资报表配置-薪资配置6
* @param tSalaryConfigStandard
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"修改工资报表配置-薪资配置6"
,
description
=
"修改工资报表配置-薪资配置6:hasPermission('salary_tsalaryconfigstandard_edit')
"
)
@Operation
(
description
=
"修改
"
)
@SysLog
(
"修改
工资报表配置-薪资配置6
"
)
@SysLog
(
"修改
薪资识别配置(标准模板)
"
)
@PutMapping
@PutMapping
@PreAuthorize
(
"@pms.hasPermission('salary_tsalaryconfigstandard_edit')"
)
@PreAuthorize
(
"@pms.hasPermission('wxhr:tsalaryconfigstandard_edit')"
)
public
R
<
Boolean
>
updateById
(
@RequestBody
TSalaryConfigStandard
tSalaryConfigStandard
)
{
public
R
<
Boolean
>
update
(
@RequestBody
TSalaryConfigStandard
tSalaryConfigStandard
)
{
return
R
.
ok
(
tSalaryConfigStandardService
.
updateById
(
tSalaryConfigStandard
));
YifuUser
user
=
SecurityUtils
.
getUser
();
if
(
null
==
user
||
null
==
user
.
getId
())
{
return
R
.
failed
(
NO_USER
);
}
// 填充个人代扣等java字段
this
.
setJavaFiedName
(
tSalaryConfigStandard
);
if
(
String
.
valueOf
(
user
.
getId
()).
equals
(
tSalaryConfigStandard
.
getCreateUser
()))
{
return
new
R
<>(
tSalaryConfigStandardService
.
updateById
(
tSalaryConfigStandard
));
}
else
{
return
R
.
failed
(
"不可修改非自己创建的!"
);
}
}
/**
* @param tSalaryConfigStandard
* @Description: 填充个人代扣等java字段
* @Author: hgw
* @Date: 2022/4/26 16:50
* @return: void
**/
private
void
setJavaFiedName
(
@RequestBody
TSalaryConfigStandard
tSalaryConfigStandard
)
{
if
(
Common
.
isNotNull
(
tSalaryConfigStandard
.
getCnName
()))
{
if
(
tSalaryConfigStandard
.
getCnName
().
contains
(
"个人代扣-"
))
{
tSalaryConfigStandard
.
setJavaFiedName
(
SalaryConstants
.
PDEDUCTION_JAVA
);
}
else
if
(
tSalaryConfigStandard
.
getCnName
().
contains
(
"单位代扣-"
))
{
tSalaryConfigStandard
.
setJavaFiedName
(
SalaryConstants
.
UDEDUCTION_JAVA
);
}
}
}
}
/**
/**
* 通过id删除
工资报表配置-薪资配置6
* 通过id删除
一条记录
*
*
* @param id
id
* @param id
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"通过id删除工资报表配置-薪资配置6"
,
description
=
"通过id删除工资报表配置-薪资配置6:hasPermission('salary_tsalaryconfigstandard_del')
"
)
@Operation
(
description
=
"删除
"
)
@SysLog
(
"
通过id删除工资报表配置-薪资配置6
"
)
@SysLog
(
"
删除薪资识别配置(标准模板)
"
)
@DeleteMapping
(
"/{id}"
)
@DeleteMapping
(
"/{id}"
)
@PreAuthorize
(
"@pms.hasPermission('
salary_
tsalaryconfigstandard_del')"
)
@PreAuthorize
(
"@pms.hasPermission('
wxhr:
tsalaryconfigstandard_del')"
)
public
R
<
Boolean
>
removeById
(
@PathVariable
String
id
)
{
public
R
<
Boolean
>
removeById
(
@PathVariable
String
id
)
{
return
R
.
ok
(
tSalaryConfigStandardService
.
removeById
(
id
));
YifuUser
user
=
SecurityUtils
.
getUser
();
if
(
null
==
user
||
null
==
user
.
getId
())
{
return
R
.
failed
(
NO_USER
);
}
TSalaryConfigStandard
sc
=
tSalaryConfigStandardService
.
getById
(
id
);
if
(
String
.
valueOf
(
user
.
getId
()).
equals
(
sc
.
getCreateUser
()))
{
return
new
R
<>(
tSalaryConfigStandardService
.
removeById
(
id
));
}
else
{
return
R
.
failed
(
"不可删除非自己创建的!"
);
}
}
}
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/controller/TSalaryTaxConfigController.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
controller
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
controller
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.OrderItem
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog
;
import
com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog
;
import
com.yifu.cloud.plus.v1.yifu.salary.constants.SalaryConstants
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryTaxConfig
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryTaxConfig
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TSalaryTaxConfigService
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TSalaryTaxConfigService
;
import
com.yifu.cloud.plus.v1.yifu.salary.vo.TSalaryTaxConfigSearchVo
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
lombok.
Required
ArgsConstructor
;
import
lombok.
All
ArgsConstructor
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.*
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
/**
/**
* 所得税配置-薪资配置3
* @Author fxj
*
* @Description 个税比例及速算扣除数的配置表
* @author hgw
* @Date 13:33 2022/8/6
* @date 2022-08-05 11:40:14
* @Param
*/
* @return
**/
@RestController
@RestController
@
Required
ArgsConstructor
@
All
ArgsConstructor
@RequestMapping
(
"/tsalarytaxconfig"
)
@RequestMapping
(
"/tsalarytaxconfig"
)
@Tag
(
name
=
"
所得税配置-薪资配置3管理
"
)
@Tag
(
name
=
"
薪资配置-所得税配置
"
)
public
class
TSalaryTaxConfigController
{
public
class
TSalaryTaxConfigController
{
private
final
TSalaryTaxConfigService
tSalaryTaxConfigService
;
private
final
TSalaryTaxConfigService
tSalaryTaxConfigService
;
/**
* @param page 分页对象
* @param tSalaryTaxConfig 个税比例及速算扣除数的配置表
* @Description: 工资个税-分页查询
* @Author: hgw
* @Date: 2019/10/15 18:06
* @return: com.yifu.cloud.v1.common.core.util.R<com.baomidou.mybatisplus.core.metadata.IPage < com.yifu.cloud.v1.hrms.api.entity.TSalaryTaxConfig>>
**/
@Operation
(
description
=
"工资个税-分页查询"
)
@GetMapping
(
"/salaryPage"
)
public
R
<
IPage
<
TSalaryTaxConfig
>>
getTSalaryTaxConfigPageBySalary
(
Page
<
TSalaryTaxConfig
>
page
,
TSalaryTaxConfig
tSalaryTaxConfig
)
{
tSalaryTaxConfig
.
setType
(
SalaryConstants
.
SALARY_TAX_TYPE
[
0
]);
//根据 level 顺序排序
List
<
OrderItem
>
orders
=
new
ArrayList
<>();
OrderItem
oi
=
new
OrderItem
();
oi
.
setColumn
(
"level"
);
oi
.
setAsc
(
true
);
orders
.
add
(
oi
);
page
.
setOrders
(
orders
);
return
new
R
<>(
tSalaryTaxConfigService
.
getTSalaryTaxConfigPage
(
page
,
tSalaryTaxConfig
));
}
/**
/**
* 简单分页查询
*
* @param page 分页对象
* @param page 分页对象
* @param tSalaryTaxConfig 所得税配置-薪资配置3
* @param tSalaryTaxConfig 个税比例及速算扣除数的配置表
* @return
* @Description: 年终奖个税-分页查询
*/
* @Author: hgw
@Operation
(
description
=
"简单分页查询"
)
* @Date: 2019/10/15 18:05
@GetMapping
(
"/page"
)
* @return: com.yifu.cloud.v1.common.core.util.R<com.baomidou.mybatisplus.core.metadata.IPage < com.yifu.cloud.v1.hrms.api.entity.TSalaryTaxConfig>>
public
R
<
IPage
<
TSalaryTaxConfig
>>
getTSalaryTaxConfigPage
(
Page
<
TSalaryTaxConfig
>
page
,
TSalaryTaxConfigSearchVo
tSalaryTaxConfig
)
{
**/
@Operation
(
description
=
"年终奖个税-分页查询"
)
@GetMapping
(
"/yearPage"
)
public
R
<
IPage
<
TSalaryTaxConfig
>>
getTSalaryTaxConfigPageByYear
(
Page
<
TSalaryTaxConfig
>
page
,
TSalaryTaxConfig
tSalaryTaxConfig
)
{
tSalaryTaxConfig
.
setType
(
SalaryConstants
.
SALARY_TAX_TYPE
[
1
]);
//根据 level 顺序排序
List
<
OrderItem
>
orders
=
new
ArrayList
<>();
OrderItem
oi
=
new
OrderItem
();
oi
.
setColumn
(
"level"
);
oi
.
setAsc
(
true
);
orders
.
add
(
oi
);
page
.
setOrders
(
orders
);
return
new
R
<>(
tSalaryTaxConfigService
.
getTSalaryTaxConfigPage
(
page
,
tSalaryTaxConfig
));
return
new
R
<>(
tSalaryTaxConfigService
.
getTSalaryTaxConfigPage
(
page
,
tSalaryTaxConfig
));
}
}
/**
/**
* 通过id查询
所得税配置-薪资配置3
* 通过id查询
单条记录
*
*
* @param id
id
* @param id
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"通过id查询"
,
description
=
"通过id查询:hasPermission('salary_tsalarytaxconfig_get')
"
)
@Operation
(
description
=
"id查询
"
)
@GetMapping
(
"/{id}"
)
@GetMapping
(
"/{id}"
)
public
R
<
TSalaryTaxConfig
>
getById
(
@PathVariable
(
"id"
)
String
id
)
{
public
R
<
TSalaryTaxConfig
>
getById
(
@PathVariable
(
"id"
)
String
id
)
{
return
R
.
ok
(
tSalaryTaxConfigService
.
getById
(
id
));
return
new
R
<>
(
tSalaryTaxConfigService
.
getById
(
id
));
}
}
/**
/**
* 新增
所得税配置-薪资配置3
* 新增
记录
*
*
* @param tSalaryTaxConfig
所得税配置-薪资配置3
* @param tSalaryTaxConfig
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"新增所得税配置-薪资配置3"
,
description
=
"新增所得税配置-薪资配置3:hasPermission('salary_tsalarytaxconfig_add')
"
)
@Operation
(
description
=
"新增
"
)
@SysLog
(
"新增
所得税配置-薪资配置3
"
)
@SysLog
(
"新增
个税比例及速算扣除数的配置表
"
)
@PostMapping
@PostMapping
@PreAuthorize
(
"@pms.hasPermission('
salary_
tsalarytaxconfig_add')"
)
@PreAuthorize
(
"@pms.hasPermission('
wxhr:
tsalarytaxconfig_add')"
)
public
R
<
Boolean
>
save
(
@RequestBody
TSalaryTaxConfig
tSalaryTaxConfig
)
{
public
R
save
(
@RequestBody
TSalaryTaxConfig
tSalaryTaxConfig
)
{
return
R
.
ok
(
tSalaryTaxConfigService
.
save
(
tSalaryTaxConfig
));
return
new
R
<>
(
tSalaryTaxConfigService
.
save
(
tSalaryTaxConfig
));
}
}
/**
/**
* 修改
所得税配置-薪资配置3
* 修改
记录
*
*
* @param tSalaryTaxConfig
所得税配置-薪资配置3
* @param tSalaryTaxConfig
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"修改所得税配置-薪资配置3"
,
description
=
"修改所得税配置-薪资配置3:hasPermission('salary_tsalarytaxconfig_edit')
"
)
@Operation
(
description
=
"修改
"
)
@SysLog
(
"修改
所得税配置-薪资配置3
"
)
@SysLog
(
"修改
个税比例及速算扣除数的配置表
"
)
@PutMapping
@PutMapping
@PreAuthorize
(
"@pms.hasPermission('
salary_
tsalarytaxconfig_edit')"
)
@PreAuthorize
(
"@pms.hasPermission('
wxhr:
tsalarytaxconfig_edit')"
)
public
R
<
Boolean
>
updateById
(
@RequestBody
TSalaryTaxConfig
tSalaryTaxConfig
)
{
public
R
update
(
@RequestBody
TSalaryTaxConfig
tSalaryTaxConfig
)
{
return
R
.
ok
(
tSalaryTaxConfigService
.
updateById
(
tSalaryTaxConfig
));
return
new
R
<>
(
tSalaryTaxConfigService
.
updateById
(
tSalaryTaxConfig
));
}
}
/**
/**
* 通过id删除
所得税配置-薪资配置3
* 通过id删除
一条记录
*
*
* @param id
id
* @param id
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"通过id删除所得税配置-薪资配置3"
,
description
=
"通过id删除所得税配置-薪资配置3:hasPermission('salary_tsalarytaxconfig_del')
"
)
@Operation
(
description
=
"删除
"
)
@SysLog
(
"
通过id删除所得税配置-薪资配置3
"
)
@SysLog
(
"
删除个税比例及速算扣除数的配置表
"
)
@DeleteMapping
(
"/{id}"
)
@DeleteMapping
(
"/{id}"
)
@PreAuthorize
(
"@pms.hasPermission('
salary_
tsalarytaxconfig_del')"
)
@PreAuthorize
(
"@pms.hasPermission('
wxhr:
tsalarytaxconfig_del')"
)
public
R
<
Boolean
>
removeById
(
@PathVariable
String
id
)
{
public
R
removeById
(
@PathVariable
String
id
)
{
return
R
.
ok
(
tSalaryTaxConfigService
.
removeById
(
id
));
return
new
R
<>
(
tSalaryTaxConfigService
.
removeById
(
id
));
}
}
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/controller/TSpecialDeducationSumController.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
controller
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
controller
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.OrderItem
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.ErrorMessage
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.Common
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.DateUtil
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog
;
import
com.yifu.cloud.plus.v1.yifu.common.log.annotation.SysLog
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSpecialDeducationSum
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSpecialDeducationSum
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TSpecialDeducationSumService
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TSpecialDeducationSumService
;
import
com.yifu.cloud.plus.v1.yifu.salary.vo.TSpecialDeducationSumSearchVo
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.Operation
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
io.swagger.v3.oas.annotations.tags.Tag
;
import
lombok.RequiredArgsConstructor
;
import
lombok.AllArgsConstructor
;
import
lombok.SneakyThrows
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.security.access.prepost.PreAuthorize
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.bind.annotation.*
;
import
org.springframework.web.multipart.MultipartFile
;
import
javax.servlet.http.HttpServletResponse
;
import
javax.validation.Valid
;
import
java.text.SimpleDateFormat
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.List
;
/**
/**
* 专项扣除配置表-薪资配置5
* @Author fxj
*
* @Description
* @author hgw
* @Date 13:33 2022/8/6
* @date 2022-08-05 11:40:14
* @Param
*/
* @return
**/
@RestController
@RestController
@
Required
ArgsConstructor
@
All
ArgsConstructor
@RequestMapping
(
"/tspecialdeducationsum"
)
@RequestMapping
(
"/tspecialdeducationsum"
)
@Tag
(
name
=
"专项扣除
配置表-薪资配置5管理
"
)
@Tag
(
name
=
"专项扣除
信息
"
)
public
class
TSpecialDeducationSumController
{
public
class
TSpecialDeducationSumController
{
private
final
TSpecialDeducationSumService
tSpecialDeducationSumService
;
private
final
TSpecialDeducationSumService
tSpecialDeducationSumService
;
/**
/**
* 简单分页查询
* 简单分页查询
*
*
* @param page 分页对象
* @param page 分页对象
* @param tSpecialDeducationSum
专项扣除配置表-薪资配置5
* @param tSpecialDeducationSum
* @return
* @return
*/
*/
@Operation
(
description
=
"简单分页查询"
)
@Operation
(
description
=
"简单分页查询"
)
@GetMapping
(
"/page"
)
@GetMapping
(
"/page"
)
public
R
<
IPage
<
TSpecialDeducationSum
>>
getTSpecialDeducationSumPage
(
Page
<
TSpecialDeducationSum
>
page
,
TSpecialDeducationSumSearchVo
tSpecialDeducationSum
)
{
public
R
<
IPage
<
TSpecialDeducationSum
>>
getTSpecialDeducationSumPage
(
Page
<
TSpecialDeducationSum
>
page
,
TSpecialDeducationSum
tSpecialDeducationSum
)
{
page
.
addOrder
(
OrderItem
.
desc
(
"CREATE_TIME"
));
return
new
R
<>(
tSpecialDeducationSumService
.
getTSpecialDeducationSumPage
(
page
,
tSpecialDeducationSum
));
return
new
R
<>(
tSpecialDeducationSumService
.
getTSpecialDeducationSumPage
(
page
,
tSpecialDeducationSum
));
}
}
/**
* 不分页查询
*
* @param tSpecialDeducationSum 专项扣除配置表-薪资配置5
* @return
*/
@Operation
(
summary
=
"不分页查询"
,
description
=
"不分页查询"
)
@PostMapping
(
"/noPage"
)
//@PreAuthorize("@pms.hasPermission('salary_tspecialdeducationsum_get')" )
public
R
<
List
<
TSpecialDeducationSum
>>
getTSpecialDeducationSumNoPage
(
@RequestBody
TSpecialDeducationSumSearchVo
tSpecialDeducationSum
)
{
return
R
.
ok
(
tSpecialDeducationSumService
.
noPageDiy
(
tSpecialDeducationSum
));
}
/**
/**
* 通过id查询
专项扣除配置表-薪资配置5
* 通过id查询
单条记录
*
*
* @param id
id
* @param id
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"通过id查询"
,
description
=
"通过id查询:hasPermission('salary_tspecialdeducationsum_get')
"
)
@Operation
(
description
=
"id查询
"
)
@GetMapping
(
"/{id}"
)
@GetMapping
(
"/{id}"
)
public
R
<
TSpecialDeducationSum
>
getById
(
@PathVariable
(
"id"
)
String
id
)
{
public
R
<
TSpecialDeducationSum
>
getById
(
@PathVariable
(
"id"
)
String
id
)
{
return
R
.
ok
(
tSpecialDeducationSumService
.
getById
(
id
));
return
new
R
<>
(
tSpecialDeducationSumService
.
getById
(
id
));
}
}
/**
/**
* 新增
专项扣除配置表-薪资配置5
* 新增
记录
*
*
* @param tSpecialDeducationSum
专项扣除配置表-薪资配置5
* @param tSpecialDeducationSum
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"新增专项扣除配置表-薪资配置5"
,
description
=
"新增专项扣除配置表-薪资配置5:hasPermission('salary_tspecialdeducationsum_add')"
)
@Operation
(
description
=
"新增(wxhr:tspecialdeducationsum_add)"
)
@SysLog
(
"新增专项扣除配置表-薪资配置5"
)
@PostMapping
@PostMapping
@PreAuthorize
(
"@pms.hasPermission('
salary_
tspecialdeducationsum_add')"
)
@PreAuthorize
(
"@pms.hasPermission('
wxhr:
tspecialdeducationsum_add')"
)
public
R
<
Boolean
>
save
(
@RequestBody
TSpecialDeducationSum
tSpecialDeducationSum
)
{
public
R
save
(
@Valid
@RequestBody
TSpecialDeducationSum
tSpecialDeducationSum
)
{
return
R
.
ok
(
tSpecialDeducationSumService
.
save
(
tSpecialDeducationSum
));
return
new
R
<>
(
tSpecialDeducationSumService
.
save
(
tSpecialDeducationSum
));
}
}
/**
/**
* 修改
专项扣除配置表-薪资配置5
* 修改
记录
*
*
* @param tSpecialDeducationSum
专项扣除配置表-薪资配置5
* @param tSpecialDeducationSum
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"修改专项扣除配置表-薪资配置5"
,
description
=
"修改专项扣除配置表-薪资配置5:hasPermission('salary_tspecialdeducationsum_edit'
)"
)
@Operation
(
description
=
"修改(wxhr:tspecialdeducationsum_edit
)"
)
@SysLog
(
"修改
专项扣除配置表-薪资配置5
"
)
@SysLog
(
"修改"
)
@PutMapping
@PutMapping
@PreAuthorize
(
"@pms.hasPermission('
salary_
tspecialdeducationsum_edit')"
)
@PreAuthorize
(
"@pms.hasPermission('
wxhr:
tspecialdeducationsum_edit')"
)
public
R
<
Boolean
>
updateById
(
@RequestBody
TSpecialDeducationSum
tSpecialDeducationSum
)
{
public
R
update
(
@RequestBody
TSpecialDeducationSum
tSpecialDeducationSum
)
{
return
R
.
ok
(
tSpecialDeducationSumService
.
updateById
(
tSpecialDeducationSum
));
return
new
R
<>
(
tSpecialDeducationSumService
.
updateById
(
tSpecialDeducationSum
));
}
}
/**
/**
* 通过id删除
专项扣除配置表-薪资配置5
* 通过id删除
一条记录
*
*
* @param id
id
* @param id
* @return R
* @return R
*/
*/
@Operation
(
summary
=
"通过id删除专项扣除配置表-薪资配置5"
,
description
=
"通过id删除专项扣除配置表-薪资配置5:hasPermission('salary_tspecialdeducationsum_del'
)"
)
@Operation
(
description
=
"删除(wxhr:tspecialdeducationsum_del
)"
)
@SysLog
(
"
通过id删除专项扣除配置表-薪资配置5
"
)
@SysLog
(
"
删除
"
)
@DeleteMapping
(
"/{id}"
)
@DeleteMapping
(
"/{id}"
)
@PreAuthorize
(
"@pms.hasPermission('
salary_
tspecialdeducationsum_del')"
)
@PreAuthorize
(
"@pms.hasPermission('
wxhr:
tspecialdeducationsum_del')"
)
public
R
<
Boolean
>
removeById
(
@PathVariable
String
id
)
{
public
R
removeById
(
@PathVariable
String
id
)
{
return
R
.
ok
(
tSpecialDeducationSumService
.
removeById
(
id
));
return
new
R
<>
(
tSpecialDeducationSumService
.
removeById
(
id
));
}
}
/**
/**
* 专项扣除配置表-薪资配置5 批量导入
* @param savList
*
* @Description: 保存专项
* @author hgw
* @Author: hgw
* @date 2022-08-05 11:40:14
* @Date: 2019/10/14 14:48
* @return: com.yifu.cloud.v1.common.core.util.R
**/
**/
@SneakyThrows
@Operation
(
description
=
"上传专项扣除"
)
@Operation
(
description
=
"批量新增专项扣除配置表-薪资配置5 hasPermission('salary_tspecialdeducationsum-batch-import')"
)
@SysLog
(
"上传专项扣除"
)
@SysLog
(
"批量新增专项扣除配置表-薪资配置5"
)
@PostMapping
(
"/uploadSds"
)
@PostMapping
(
"/importListAdd"
)
//@PreAuthorize("@pms.hasPermission('wxhr:salary_upload')")
@PreAuthorize
(
"@pms.hasPermission('salary_tspecialdeducationsum-batch-import')"
)
public
R
uploadSds
(
@RequestBody
List
<
TSpecialDeducationSum
>
savList
)
{
public
R
<
List
<
ErrorMessage
>>
importListAdd
(
@RequestBody
MultipartFile
file
)
{
return
tSpecialDeducationSumService
.
uploadSds
(
savList
);
return
tSpecialDeducationSumService
.
importDiy
(
file
.
getInputStream
());
}
}
/**
/**
* 专项扣除配置表-薪资配置5 批量导出
* @param declareTitle
*
* @Description: 删除当月全部-专项扣除汇总
* @author hgw
* @Author: hgw
* @date 2022-08-05 11:40:14
* @Date: 2020/4/1 14:47
* @return: java.lang.String
**/
**/
@Operation
(
description
=
"导出专项扣除配置表-薪资配置5 hasPermission('salary_tspecialdeducationsum-export')"
)
@Operation
(
description
=
"删除本月全部专项扣除"
)
@PostMapping
(
"/export"
)
@SysLog
(
"删除本月全部专项扣除"
)
@PreAuthorize
(
"@pms.hasPermission('salary_tspecialdeducationsum-export')"
)
@PostMapping
(
"/doDeleteTSumSpecialDeducationAll"
)
public
void
export
(
HttpServletResponse
response
,
@RequestBody
TSpecialDeducationSumSearchVo
searchVo
)
{
public
R
doDeleteTSumSpecialDeducationAll
(
String
yearMonth
,
String
declareTitle
)
{
tSpecialDeducationSumService
.
listExport
(
response
,
searchVo
);
if
(
Common
.
isEmpty
(
yearMonth
))
{
SimpleDateFormat
df
=
new
SimpleDateFormat
(
"yyyyMM"
);
yearMonth
=
df
.
format
(
new
Date
());
}
if
(
Common
.
isEmpty
(
declareTitle
))
{
return
R
.
failed
(
"申报单位不可为空!"
);
}
int
num
=
tSpecialDeducationSumService
.
deleteByUnitAndMonth
(
yearMonth
,
declareTitle
);
if
(
num
==
0
)
{
return
R
.
failed
(
"当前条件查询无数据,未删除"
);
}
else
{
return
new
R
<>(
"已删除"
+
num
+
"条数据"
);
}
}
}
/**
* @param tSpecialDeducationSum
* @Description: 导出专项扣除
* @Author: hgw
* @Date: 2020-6-17 17:30:12
* @return: com.yifu.cloud.v1.common.core.util.R
**/
@Operation
(
description
=
"导出专项扣除"
)
@SysLog
(
"导出专项扣除"
)
@GetMapping
(
"/doExportSpecialDeducationSum"
)
public
R
doExportSpecialDeducationSum
(
TSpecialDeducationSum
tSpecialDeducationSum
)
{
if
(
Common
.
isEmpty
(
tSpecialDeducationSum
.
getCreateMonth
()))
{
String
nowMonth
=
DateUtil
.
addMonth
(
0
);
//本月
tSpecialDeducationSum
.
setCreateMonth
(
nowMonth
);
}
List
<
TSpecialDeducationSum
>
sPage
=
tSpecialDeducationSumService
.
getTSpecialDeducationSumList
(
tSpecialDeducationSum
);
return
new
R
<>(
sPage
);
}
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/mapper/TConfigSalaryMapper.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
mapper
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
mapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TConfigSalary
;
import
org.apache.ibatis.annotations.Mapper
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.yifu.archives.vo.TSettleDomainSelectVo
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TConfigSalary
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.annotations.Param
;
import
java.util.List
;
/**
/**
*
项目基础薪酬配置-薪资配置2
*
工资报账配置
*
*
* @author
hgw
* @author
fxj
* @date 2022-08-0
5 11:40:14
* @date 2022-08-0
6 13:00
*/
*/
@Mapper
@Mapper
public
interface
TConfigSalaryMapper
extends
BaseMapper
<
TConfigSalary
>
{
public
interface
TConfigSalaryMapper
extends
BaseMapper
<
TConfigSalary
>
{
/**
/**
* 项目基础薪酬配置-薪资配置2简单分页查询
* 工资报账配置简单分页查询
* @param tConfigSalary 项目基础薪酬配置-薪资配置2
* @param tConfigSalary 工资报账配置
* @return
* @return
*/
*/
IPage
<
TConfigSalary
>
getTConfigSalaryPage
(
Page
<
TConfigSalary
>
page
,
@Param
(
"tConfigSalary"
)
TConfigSalary
tConfigSalary
);
IPage
<
TConfigSalary
>
getTConfigSalaryPage
(
Page
page
,
@Param
(
"tConfigSalary"
)
TConfigSalary
tConfigSalary
,
@Param
(
"settleDomainVos"
)
List
<
TSettleDomainSelectVo
>
settleDomainVos
);
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/mapper/TMinSalaryMapper.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
mapper
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
mapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TMinSalary
;
import
org.apache.ibatis.annotations.Mapper
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TMinSalary
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.annotations.Param
;
/**
/**
*
最低工资配置-薪资配置4
*
各地市最低工资标准
*
*
* @author
hgw
* @author
fxj
* @date 2022-08-0
5 11:40:14
* @date 2022-08-0
6 13:00
*/
*/
@Mapper
@Mapper
public
interface
TMinSalaryMapper
extends
BaseMapper
<
TMinSalary
>
{
public
interface
TMinSalaryMapper
extends
BaseMapper
<
TMinSalary
>
{
/**
/**
* 最低工资配置-薪资配置4简单分页查询
* 各地市最低工资标准简单分页查询
* @param tMinSalary 最低工资配置-薪资配置4
* @param tMinSalary 各地市最低工资标准
* @return
* @return
*/
*/
IPage
<
TMinSalary
>
getTMinSalaryPage
(
Page
<
TMinSalary
>
page
,
@Param
(
"tMinSalary"
)
TMinSalary
tMinSalary
);
IPage
<
TMinSalary
>
getTMinSalaryPage
(
Page
page
,
@Param
(
"tMinSalary"
)
TMinSalary
tMinSalary
);
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/mapper/TOwnDeptMapper.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
mapper
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
mapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TOwnDept
;
import
org.apache.ibatis.annotations.Mapper
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TOwnDept
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.annotations.Param
;
import
java.util.List
;
/**
/**
* 自有员工所在结算主体大全表
* 自有员工所在结算主体大全表
*
*
* @author
hgw
* @author
fxj
* @date 2022-08-0
5 11:40:14
* @date 2022-08-0
6 13:00
*/
*/
@Mapper
@Mapper
public
interface
TOwnDeptMapper
extends
BaseMapper
<
TOwnDept
>
{
public
interface
TOwnDeptMapper
extends
BaseMapper
<
TOwnDept
>
{
/**
/**
* 自有员工所在结算主体大全表简单分页查询
* 自有员工所在结算主体大全表简单分页查询
* @param tOwnDept 自有员工所在结算主体大全表
*
* @return
* @param tOwnDept 自有员工所在结算主体大全表
*/
* @return
IPage
<
TOwnDept
>
getTOwnDeptPage
(
Page
<
TOwnDept
>
page
,
@Param
(
"tOwnDept"
)
TOwnDept
tOwnDept
);
*/
IPage
<
TOwnDept
>
getTOwnDeptPage
(
Page
<
TOwnDept
>
page
,
@Param
(
"tOwnDept"
)
TOwnDept
tOwnDept
);
List
<
String
>
getOwnEmpList
();
List
<
String
>
getTOwnDeptIdList
();
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/mapper/TSalaryConfigStandardMapper.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
mapper
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
mapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryConfigStandard
;
import
org.apache.ibatis.annotations.Mapper
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryConfigStandard
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.annotations.Param
;
import
java.util.List
;
/**
/**
*
工资报表配置-薪资配置6
*
薪资识别配置(标准模板)
*
*
* @author
hgw
* @author
fxj
* @date 2022-08-0
5 11:40:14
* @date 2022-08-0
6 13:00
*/
*/
@Mapper
@Mapper
public
interface
TSalaryConfigStandardMapper
extends
BaseMapper
<
TSalaryConfigStandard
>
{
public
interface
TSalaryConfigStandardMapper
extends
BaseMapper
<
TSalaryConfigStandard
>
{
/**
/**
* 工资报表配置-薪资配置6简单分页查询
* 薪资识别配置(标准模板)简单分页查询
* @param tSalaryConfigStandard 工资报表配置-薪资配置6
*
* @return
* @param tSalaryConfigStandard 薪资识别配置(标准模板)
*/
* @return
IPage
<
TSalaryConfigStandard
>
getTSalaryConfigStandardPage
(
Page
<
TSalaryConfigStandard
>
page
,
@Param
(
"tSalaryConfigStandard"
)
TSalaryConfigStandard
tSalaryConfigStandard
);
*/
IPage
<
TSalaryConfigStandard
>
getTSalaryConfigStandardPage
(
Page
<
TSalaryConfigStandard
>
page
,
@Param
(
"tSalaryConfigStandard"
)
TSalaryConfigStandard
tSalaryConfigStandard
);
List
<
TSalaryConfigStandard
>
getTSalaryConfigStandardList
(
@Param
(
"tSalaryConfigStandard"
)
TSalaryConfigStandard
tSalaryConfigStandard
);
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/mapper/TSalaryTaxConfigMapper.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
mapper
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
mapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryTaxConfig
;
import
org.apache.ibatis.annotations.Mapper
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryTaxConfig
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.annotations.Param
;
import
java.util.List
;
/**
/**
*
所得税配置-薪资配置3
*
个税比例及速算扣除数的配置表
*
*
* @author
hgw
* @author
fxj
* @date 2022-08-0
5 11:40:14
* @date 2022-08-0
6 13:00
*/
*/
@Mapper
@Mapper
public
interface
TSalaryTaxConfigMapper
extends
BaseMapper
<
TSalaryTaxConfig
>
{
public
interface
TSalaryTaxConfigMapper
extends
BaseMapper
<
TSalaryTaxConfig
>
{
/**
/**
* 所得税配置-薪资配置3简单分页查询
* 个税比例及速算扣除数的配置表简单分页查询
* @param tSalaryTaxConfig 所得税配置-薪资配置3
* @param tSalaryTaxConfig 个税比例及速算扣除数的配置表
* @return
* @return
*/
*/
IPage
<
TSalaryTaxConfig
>
getTSalaryTaxConfigPage
(
Page
<
TSalaryTaxConfig
>
page
,
@Param
(
"tSalaryTaxConfig"
)
TSalaryTaxConfig
tSalaryTaxConfig
);
IPage
<
TSalaryTaxConfig
>
getTSalaryTaxConfigPage
(
Page
page
,
@Param
(
"tSalaryTaxConfig"
)
TSalaryTaxConfig
tSalaryTaxConfig
);
/**
* @param tSalaryTaxConfig
* @Description: 获取个税配置
* @Author: hgw
* @Date: 2019/10/8 14:39
* @return: java.util.List<com.yifu.cloud.v1.hrms.api.entity.TSalaryTaxConfig>
**/
List
<
TSalaryTaxConfig
>
getTaxConfigByPersonList
(
@Param
(
"tSalaryTaxConfig"
)
TSalaryTaxConfig
tSalaryTaxConfig
);
/**
* @param tSalaryTaxConfig
* @Description: 获取年终奖配置
* @Author: hgw
* @Date: 2019/10/8 14:40
* @return: java.util.List<com.yifu.cloud.v1.hrms.api.entity.TSalaryTaxConfig>
**/
List
<
TSalaryTaxConfig
>
getTaxConfigByAnnualBonusList
(
@Param
(
"tSalaryTaxConfig"
)
TSalaryTaxConfig
tSalaryTaxConfig
);
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/mapper/TSpecialDeducationSumMapper.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
mapper
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
mapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.baomidou.mybatisplus.core.mapper.BaseMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSpecialDeducationSum
;
import
org.apache.ibatis.annotations.Mapper
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSpecialDeducationSum
;
import
org.apache.ibatis.annotations.Mapper
;
import
org.apache.ibatis.annotations.Param
;
import
org.apache.ibatis.annotations.Param
;
import
java.util.List
;
/**
/**
* 专项扣除配置表-薪资配置5
* @author fxj
*
* @date 2022-08-06 13:00
* @author hgw
* @date 2022-08-05 11:40:14
*/
*/
@Mapper
@Mapper
public
interface
TSpecialDeducationSumMapper
extends
BaseMapper
<
TSpecialDeducationSum
>
{
public
interface
TSpecialDeducationSumMapper
extends
BaseMapper
<
TSpecialDeducationSum
>
{
/**
/**
* 专项扣除配置表-薪资配置5简单分页查询
* 简单分页查询
* @param tSpecialDeducationSum 专项扣除配置表-薪资配置5
*
* @return
* @param tSpecialDeducationSum
*/
* @return
IPage
<
TSpecialDeducationSum
>
getTSpecialDeducationSumPage
(
Page
<
TSpecialDeducationSum
>
page
,
@Param
(
"tSpecialDeducationSum"
)
TSpecialDeducationSum
tSpecialDeducationSum
);
*/
IPage
<
TSpecialDeducationSum
>
getTSpecialDeducationSumPage
(
Page
page
,
@Param
(
"tSpecialDeducationSum"
)
TSpecialDeducationSum
tSpecialDeducationSum
);
/**
* @param tSpecialDeducationSum
* @Description: 查找专项信息,返回list
* @Author: hgw
* @Date: 2019/9/30 16:18
* @return: java.util.List<com.yifu.cloud.v1.hrms.api.entity.TSpecialDeducationSum>
**/
List
<
TSpecialDeducationSum
>
getTSpecialDeducationSumList
(
@Param
(
"tSpecialDeducationSum"
)
TSpecialDeducationSum
tSpecialDeducationSum
);
/**
* @param yearMonth
* @param idNumber
* @Description: 获取当月专项信息
* @Author: hgw
* @Date: 2019/9/30 16:29
* @return: com.yifu.cloud.v1.hrms.api.entity.TSpecialDeducationSum
**/
TSpecialDeducationSum
getTSpecialDeducationSum
(
@Param
(
"yearMonth"
)
String
yearMonth
,
@Param
(
"idNumber"
)
String
idNumber
,
@Param
(
"invoiceTitle"
)
String
invoiceTitle
);
/**
* @param yearMonth
* @param idCardList
* @Description: 工资查询所需的全部list,组装Map来使用
* @Author: hgw
* @Date: 2022/1/26 16:45
* @return: java.util.List<com.yifu.cloud.v1.hrms.api.entity.TSpecialDeducationSum>
**/
List
<
TSpecialDeducationSum
>
getListByIdCardList
(
@Param
(
"yearMonth"
)
String
yearMonth
,
@Param
(
"idCardList"
)
List
<
String
>
idCardList
);
int
deleteByUnitAndMonth
(
@Param
(
"yearMonth"
)
String
yearMonth
,
@Param
(
"invoiceTitle"
)
String
invoiceTitle
);
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/TConfigSalaryService.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TConfigSalary
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TConfigSalary
;
import
com.yifu.cloud.plus.v1.yifu.salary.vo.TConfigSalarySearchVo
;
import
java.util.List
;
/**
/**
* 项目基础薪酬配置-薪资配置2
* @Author fxj
*
* @Description 工资报账配置
* @author hgw
* @Date 13:12 2022/8/6
* @date 2022-08-05 11:40:14
* @Param
*/
* @return
**/
public
interface
TConfigSalaryService
extends
IService
<
TConfigSalary
>
{
public
interface
TConfigSalaryService
extends
IService
<
TConfigSalary
>
{
/**
* 项目基础薪酬配置-薪资配置2简单分页查询
* @param tConfigSalary 项目基础薪酬配置-薪资配置2
* @return
*/
IPage
<
TConfigSalary
>
getTConfigSalaryPage
(
Page
<
TConfigSalary
>
page
,
TConfigSalarySearchVo
tConfigSalary
);
List
<
TConfigSalary
>
noPageDiy
(
TConfigSalarySearchVo
searchVo
);
/**
* 工资报账配置简单分页查询
* @param tConfigSalary 工资报账配置
* @return
*/
IPage
<
TConfigSalary
>
getTConfigSalaryPage
(
Page
<
TConfigSalary
>
page
,
TConfigSalary
tConfigSalary
);
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/TMinSalaryService.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TMinSalary
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TMinSalary
;
import
com.yifu.cloud.plus.v1.yifu.salary.vo.TMinSalarySearchVo
;
import
java.util.List
;
/**
/**
* 最低工资配置-薪资配置4
* @Author fxj
*
* @Description 各地市最低工资标准
* @author hgw
* @Date 13:13 2022/8/6
* @date 2022-08-05 11:40:14
* @Param
*/
* @return
**/
public
interface
TMinSalaryService
extends
IService
<
TMinSalary
>
{
public
interface
TMinSalaryService
extends
IService
<
TMinSalary
>
{
/**
* 最低工资配置-薪资配置4简单分页查询
* @param tMinSalary 最低工资配置-薪资配置4
* @return
*/
IPage
<
TMinSalary
>
getTMinSalaryPage
(
Page
<
TMinSalary
>
page
,
TMinSalarySearchVo
tMinSalary
);
List
<
TMinSalary
>
noPageDiy
(
TMinSalarySearchVo
searchVo
);
/**
* 各地市最低工资标准简单分页查询
* @param tMinSalary 各地市最低工资标准
* @return
*/
IPage
<
TMinSalary
>
getTMinSalaryPage
(
Page
<
TMinSalary
>
page
,
TMinSalary
tMinSalary
);
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/TOwnDeptService.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TOwnDept
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TOwnDept
;
import
java.util.Map
;
/**
/**
* 自有员工所在结算主体大全表
* @Author fxj
*
* @Description 自有员工所在结算主体大全表
* @author hgw
* @Date 13:13 2022/8/6
* @date 2022-08-05 11:40:14
* @Param
*/
* @return
**/
public
interface
TOwnDeptService
extends
IService
<
TOwnDept
>
{
public
interface
TOwnDeptService
extends
IService
<
TOwnDept
>
{
/**
* 自有员工所在结算主体大全表简单分页查询
*
* @param tOwnDept 自有员工所在结算主体大全表
* @return
*/
IPage
<
TOwnDept
>
getTOwnDeptPage
(
Page
<
TOwnDept
>
page
,
TOwnDept
tOwnDept
);
/**
* @param
* @Description: 获取自有员工结算主体id
* @Author: hgw
* @Date: 2021/12/28 10:44
* @return: Map
**/
Map
<
String
,
Integer
>
getOwnDeptMap
();
/**
* @Description: 自有员工所在结算主体Map
* @Author: hgw
* @Date: 2021/11/2 17:51
* @return: java.util.Map<java.lang.String, java.lang.Integer>
**/
Map
<
String
,
Integer
>
getOwnEmpMap
();
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/TSalaryConfigStandardService.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryConfigStandard
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryConfigStandard
;
import
com.yifu.cloud.plus.v1.yifu.salary.vo.TSalaryConfigStandardSearchVo
;
import
java.util.List
;
import
java.util.List
;
/**
/**
* 工资报表配置-薪资配置6
* @Author fxj
*
* @Description 薪资识别配置(标准模板)
* @author hgw
* @Date 13:13 2022/8/6
* @date 2022-08-05 11:40:14
* @Param
*/
* @return
**/
public
interface
TSalaryConfigStandardService
extends
IService
<
TSalaryConfigStandard
>
{
public
interface
TSalaryConfigStandardService
extends
IService
<
TSalaryConfigStandard
>
{
/**
* 工资报表配置-薪资配置6简单分页查询
* @param tSalaryConfigStandard 工资报表配置-薪资配置6
* @return
*/
IPage
<
TSalaryConfigStandard
>
getTSalaryConfigStandardPage
(
Page
<
TSalaryConfigStandard
>
page
,
TSalaryConfigStandardSearchVo
tSalaryConfigStandard
);
List
<
TSalaryConfigStandard
>
noPageDiy
(
TSalaryConfigStandardSearchVo
searchVo
);
/**
* 薪资识别配置(标准模板)简单分页查询
*
* @param tSalaryConfigStandard 薪资识别配置(标准模板)
* @return
*/
IPage
<
TSalaryConfigStandard
>
getTSalaryConfigStandardPage
(
Page
<
TSalaryConfigStandard
>
page
,
TSalaryConfigStandard
tSalaryConfigStandard
);
List
<
TSalaryConfigStandard
>
getTSalaryConfigStandardList
(
TSalaryConfigStandard
tSalaryConfigStandard
);
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/TSalaryTaxConfigService.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryTaxConfig
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryTaxConfig
;
import
com.yifu.cloud.plus.v1.yifu.salary.vo.TSalaryTaxConfigSearchVo
;
import
java.util.List
;
/**
/**
* 所得税配置-薪资配置3
* @Author fxj
*
* @Description 个税比例及速算扣除数的配置表
* @author hgw
* @Date 13:13 2022/8/6
* @date 2022-08-05 11:40:14
* @Param
*/
* @return
**/
public
interface
TSalaryTaxConfigService
extends
IService
<
TSalaryTaxConfig
>
{
public
interface
TSalaryTaxConfigService
extends
IService
<
TSalaryTaxConfig
>
{
/**
* 所得税配置-薪资配置3简单分页查询
/**
* @param tSalaryTaxConfig 所得税配置-薪资配置3
* 个税比例及速算扣除数的配置表简单分页查询
* @return
* @param tSalaryTaxConfig 个税比例及速算扣除数的配置表
*/
* @return
IPage
<
TSalaryTaxConfig
>
getTSalaryTaxConfigPage
(
Page
<
TSalaryTaxConfig
>
page
,
TSalaryTaxConfigSearchVo
tSalaryTaxConfig
);
*/
IPage
<
TSalaryTaxConfig
>
getTSalaryTaxConfigPage
(
Page
<
TSalaryTaxConfig
>
page
,
TSalaryTaxConfig
tSalaryTaxConfig
);
/**
* @param tSalaryTaxConfig
* @Description: 获取个税配置
* @Author: hgw
* @Date: 2019/10/8 14:39
* @return: java.util.List<com.yifu.cloud.v1.hrms.api.entity.TSalaryTaxConfig>
**/
List
<
TSalaryTaxConfig
>
getTaxConfigByPersonList
(
TSalaryTaxConfig
tSalaryTaxConfig
);
/**
* @param tSalaryTaxConfig
* @Description: 获取年终奖配置
* @Author: hgw
* @Date: 2019/10/8 14:40
* @return: java.util.List<com.yifu.cloud.v1.hrms.api.entity.TSalaryTaxConfig>
**/
List
<
TSalaryTaxConfig
>
getTaxConfigByAnnualBonusList
(
TSalaryTaxConfig
tSalaryTaxConfig
);
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/TSpecialDeducationSumService.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.baomidou.mybatisplus.extension.service.IService
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.ErrorMessage
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSpecialDeducationSum
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSpecialDeducationSum
;
import
com.yifu.cloud.plus.v1.yifu.salary.vo.TSpecialDeducationSumSearchVo
;
import
javax.servlet.http.HttpServletResponse
;
import
java.io.InputStream
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Map
;
/**
/**
* 专项扣除配置表-薪资配置5
* @Author fxj
*
* @Description 专项扣除
* @author hgw
* @Date 13:14 2022/8/6
* @date 2022-08-05 11:40:14
* @Param
*/
* @return
**/
public
interface
TSpecialDeducationSumService
extends
IService
<
TSpecialDeducationSum
>
{
public
interface
TSpecialDeducationSumService
extends
IService
<
TSpecialDeducationSum
>
{
/**
* 专项扣除配置表-薪资配置5简单分页查询
* @param tSpecialDeducationSum 专项扣除配置表-薪资配置5
* @return
*/
IPage
<
TSpecialDeducationSum
>
getTSpecialDeducationSumPage
(
Page
<
TSpecialDeducationSum
>
page
,
TSpecialDeducationSumSearchVo
tSpecialDeducationSum
);
R
<
List
<
ErrorMessage
>>
importDiy
(
InputStream
inputStream
);
/**
* 简单分页查询
*
* @param tSpecialDeducationSum
* @return
*/
IPage
<
TSpecialDeducationSum
>
getTSpecialDeducationSumPage
(
Page
<
TSpecialDeducationSum
>
page
,
TSpecialDeducationSum
tSpecialDeducationSum
);
/**
* @param tSpecialDeducationSum
* @Description: 查找专项信息
* @Author: hgw
* @Date: 2019/9/30 16:19
* @return: java.util.List<com.yifu.cloud.v1.hrms.api.entity.TSpecialDeducationSum>
**/
List
<
TSpecialDeducationSum
>
getTSpecialDeducationSumList
(
TSpecialDeducationSum
tSpecialDeducationSum
);
/**
* @param yearMonth 年月
* @param idNumber 身份证
* @param invoiceTitle 封面抬头
* @Description:
* @Author: hgw
* @Date: 2019/9/30 17:23
* @return: com.yifu.cloud.v1.hrms.api.entity.TSpecialDeducationSum
**/
TSpecialDeducationSum
getTSpecialDeducationSum
(
String
yearMonth
,
String
idNumber
,
String
invoiceTitle
);
/**
* @param yearMonth 年月
* @param idCardList 身份证
* @Description: 工资查询所需的全部list,组装Map来使用
* @Author: hgw
* @Date: 2019/9/30 17:23
* @return: com.yifu.cloud.v1.hrms.api.entity.TSpecialDeducationSum
**/
Map
<
String
,
TSpecialDeducationSum
>
getTSpecialDeducationSumMap
(
String
yearMonth
,
List
<
String
>
idCardList
);
/**
* @param yearMonth 年月
* @param invoiceTitle 申报单位
* @Description: 删除专项扣除
* @Author: hgw
* @Date: 2020/4/1 15:12
* @return: int
**/
int
deleteByUnitAndMonth
(
String
yearMonth
,
String
invoiceTitle
);
/**
* @param sdsList
* @Description: 保存专项
* @Author: hgw
* @Date: 2019/10/14 14:48
* @return: com.yifu.cloud.v1.common.core.util.R
**/
R
uploadSds
(
List
<
TSpecialDeducationSum
>
sdsList
);
void
listExport
(
HttpServletResponse
response
,
TSpecialDeducationSumSearchVo
searchVo
);
List
<
TSpecialDeducationSum
>
noPageDiy
(
TSpecialDeducationSumSearchVo
searchVo
);
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/impl/TConfigSalaryServiceImpl.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
.
impl
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
.
impl
;
import
cn.hutool.core.util.ArrayUtil
;
import
com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.toolkit.Wrappers
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.yifu.cloud.plus.v1.yifu.archives.vo.TSettleDomainSelectVo
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.CommonConstants
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.Common
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.Common
;
import
com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.core.vo.YifuUser
;
import
com.yifu.cloud.plus.v1.yifu.common.security.util.SecurityUtils
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TConfigSalary
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TConfigSalary
;
import
com.yifu.cloud.plus.v1.yifu.salary.mapper.TConfigSalaryMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.mapper.TConfigSalaryMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TConfigSalaryService
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TConfigSalaryService
;
import
com.yifu.cloud.plus.v1.yifu.salary.vo.TConfigSalarySearchVo
;
import
lombok.extern.log4j.Log4j2
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
java.util.List
;
import
java.util.List
;
/**
/**
*
项目基础薪酬配置-薪资配置2
*
@Author fxj
*
*
@Description 工资报账配置
* @
author hgw
* @
Date 13:17 2022/8/6
* @
date 2022-08-05 11:40:14
* @
Param
*
/
*
@return
@Log4j2
**/
@Service
@Service
(
"tConfigSalaryService"
)
public
class
TConfigSalaryServiceImpl
extends
ServiceImpl
<
TConfigSalaryMapper
,
TConfigSalary
>
implements
TConfigSalaryService
{
public
class
TConfigSalaryServiceImpl
extends
ServiceImpl
<
TConfigSalaryMapper
,
TConfigSalary
>
implements
TConfigSalaryService
{
/**
* 项目基础薪酬配置-薪资配置2简单分页查询
*
* @param tConfigSalary 项目基础薪酬配置-薪资配置2
* @return
*/
@Override
public
IPage
<
TConfigSalary
>
getTConfigSalaryPage
(
Page
<
TConfigSalary
>
page
,
TConfigSalarySearchVo
tConfigSalary
)
{
return
baseMapper
.
getTConfigSalaryPage
(
page
,
tConfigSalary
);
}
@Override
public
List
<
TConfigSalary
>
noPageDiy
(
TConfigSalarySearchVo
searchVo
)
{
LambdaQueryWrapper
<
TConfigSalary
>
wrapper
=
buildQueryWrapper
(
searchVo
);
List
<
String
>
idList
=
Common
.
getList
(
searchVo
.
getIds
());
if
(
Common
.
isNotNull
(
idList
))
{
wrapper
.
in
(
TConfigSalary:
:
getId
,
idList
);
}
if
(
searchVo
.
getLimitStart
()
>=
0
&&
searchVo
.
getLimitEnd
()
>
0
)
{
wrapper
.
last
(
" limit "
+
searchVo
.
getLimitStart
()
+
","
+
searchVo
.
getLimitEnd
());
}
wrapper
.
orderByDesc
(
BaseEntity:
:
getCreateTime
);
return
baseMapper
.
selectList
(
wrapper
);
}
private
LambdaQueryWrapper
buildQueryWrapper
(
TConfigSalarySearchVo
entity
)
{
/**
LambdaQueryWrapper
<
TConfigSalary
>
wrapper
=
Wrappers
.
lambdaQuery
();
* 工资报账配置简单分页查询
if
(
ArrayUtil
.
isNotEmpty
(
entity
.
getCreateTimes
()))
{
* @param tConfigSalary 工资报账配置
wrapper
.
ge
(
TConfigSalary:
:
getCreateTime
,
entity
.
getCreateTimes
()[
0
])
* @return
.
le
(
TConfigSalary:
:
getCreateTime
,
*/
entity
.
getCreateTimes
()[
1
]);
@Override
}
public
IPage
<
TConfigSalary
>
getTConfigSalaryPage
(
Page
<
TConfigSalary
>
page
,
TConfigSalary
tConfigSalary
){
if
(
Common
.
isNotNull
(
entity
.
getCreateName
()))
{
YifuUser
user
=
SecurityUtils
.
getUser
();
wrapper
.
eq
(
TConfigSalary:
:
getCreateName
,
entity
.
getCreateName
());
List
<
TSettleDomainSelectVo
>
remoteSettleDomainVoData
=
null
;
}
if
(
Common
.
isNotNull
(
user
))
{
return
wrapper
;
// TODO
}
R
<
List
<
TSettleDomainSelectVo
>>
remoteGetTSettleDomainVo
=
null
;
if
(
remoteGetTSettleDomainVo
==
null
)
{
throw
new
RuntimeException
(
"调用结算服务失败"
);
}
if
(
CommonConstants
.
SUCCESS
!=
remoteGetTSettleDomainVo
.
getCode
())
{
throw
new
RuntimeException
(
"调用结算服务返回失败"
);
}
remoteSettleDomainVoData
=
remoteGetTSettleDomainVo
.
getData
();
if
(
remoteSettleDomainVoData
==
null
)
{
throw
new
RuntimeException
(
"未获取到相关结算信息"
);
}
}
return
baseMapper
.
getTConfigSalaryPage
(
page
,
tConfigSalary
,
remoteSettleDomainVoData
);
}
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/impl/TMinSalaryServiceImpl.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
.
impl
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
.
impl
;
import
cn.hutool.core.util.ArrayUtil
;
import
com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.toolkit.Wrappers
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.Common
;
import
com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TMinSalary
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TMinSalary
;
import
com.yifu.cloud.plus.v1.yifu.salary.mapper.TMinSalaryMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.mapper.TMinSalaryMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TMinSalaryService
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TMinSalaryService
;
import
com.yifu.cloud.plus.v1.yifu.salary.vo.TMinSalarySearchVo
;
import
lombok.extern.log4j.Log4j2
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
java.util.List
;
/**
/**
*
最低工资配置-薪资配置4
*
@Author fxj
*
*
@Description 各地市最低工资标准
* @
author hgw
* @
Date 13:17 2022/8/6
* @
date 2022-08-05 11:40:14
* @
Param
*
/
*
@return
@Log4j2
**/
@Service
@Service
(
"tMinSalaryService"
)
public
class
TMinSalaryServiceImpl
extends
ServiceImpl
<
TMinSalaryMapper
,
TMinSalary
>
implements
TMinSalaryService
{
public
class
TMinSalaryServiceImpl
extends
ServiceImpl
<
TMinSalaryMapper
,
TMinSalary
>
implements
TMinSalaryService
{
/**
* 最低工资配置-薪资配置4简单分页查询
*
* @param tMinSalary 最低工资配置-薪资配置4
* @return
*/
@Override
public
IPage
<
TMinSalary
>
getTMinSalaryPage
(
Page
<
TMinSalary
>
page
,
TMinSalarySearchVo
tMinSalary
)
{
return
baseMapper
.
getTMinSalaryPage
(
page
,
tMinSalary
);
}
@Override
public
List
<
TMinSalary
>
noPageDiy
(
TMinSalarySearchVo
searchVo
)
{
LambdaQueryWrapper
<
TMinSalary
>
wrapper
=
buildQueryWrapper
(
searchVo
);
List
<
String
>
idList
=
Common
.
getList
(
searchVo
.
getIds
());
if
(
Common
.
isNotNull
(
idList
))
{
wrapper
.
in
(
TMinSalary:
:
getId
,
idList
);
}
if
(
searchVo
.
getLimitStart
()
>=
0
&&
searchVo
.
getLimitEnd
()
>
0
)
{
wrapper
.
last
(
" limit "
+
searchVo
.
getLimitStart
()
+
","
+
searchVo
.
getLimitEnd
());
}
wrapper
.
orderByDesc
(
BaseEntity:
:
getCreateTime
);
return
baseMapper
.
selectList
(
wrapper
);
}
private
LambdaQueryWrapper
buildQueryWrapper
(
TMinSalarySearchVo
entity
)
{
/**
LambdaQueryWrapper
<
TMinSalary
>
wrapper
=
Wrappers
.
lambdaQuery
();
* 各地市最低工资标准简单分页查询
if
(
ArrayUtil
.
isNotEmpty
(
entity
.
getCreateTimes
()))
{
* @param tMinSalary 各地市最低工资标准
wrapper
.
ge
(
TMinSalary:
:
getCreateTime
,
entity
.
getCreateTimes
()[
0
])
* @return
.
le
(
TMinSalary:
:
getCreateTime
,
*/
entity
.
getCreateTimes
()[
1
]);
@Override
}
public
IPage
<
TMinSalary
>
getTMinSalaryPage
(
Page
<
TMinSalary
>
page
,
TMinSalary
tMinSalary
){
if
(
Common
.
isNotNull
(
entity
.
getCreateName
()))
{
return
baseMapper
.
getTMinSalaryPage
(
page
,
tMinSalary
);
wrapper
.
eq
(
TMinSalary:
:
getCreateName
,
entity
.
getCreateName
());
}
}
return
wrapper
;
}
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/impl/TOwnDeptServiceImpl.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
.
impl
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
.
impl
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.CommonConstants
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TOwnDept
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TOwnDept
;
import
com.yifu.cloud.plus.v1.yifu.salary.mapper.TOwnDeptMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.mapper.TOwnDeptMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TOwnDeptService
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TOwnDeptService
;
import
lombok.extern.log4j.Log4j2
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
java.util.HashMap
;
import
java.util.List
;
import
java.util.Map
;
/**
/**
*
自有员工所在结算主体大全表
*
@Author fxj
*
*
@Description 自有员工所在结算主体大全表
* @
author hgw
* @
Date 13:18 2022/8/6
* @
date 2022-08-05 11:40:14
* @
Param
*
/
*
@return
@Log4j2
**/
@Service
@Service
(
"tOwnDeptService"
)
public
class
TOwnDeptServiceImpl
extends
ServiceImpl
<
TOwnDeptMapper
,
TOwnDept
>
implements
TOwnDeptService
{
public
class
TOwnDeptServiceImpl
extends
ServiceImpl
<
TOwnDeptMapper
,
TOwnDept
>
implements
TOwnDeptService
{
/**
* 自有员工所在结算主体大全表简单分页查询
*
* @param tOwnDept 自有员工所在结算主体大全表
* @return
*/
@Override
public
IPage
<
TOwnDept
>
getTOwnDeptPage
(
Page
<
TOwnDept
>
page
,
TOwnDept
tOwnDept
)
{
return
baseMapper
.
getTOwnDeptPage
(
page
,
tOwnDept
);
}
/**
* @param
* @Description: 获取自有员工结算主体id
* @Author: hgw
* @Date: 2021/12/28 10:44
* @return: java.util.List<java.lang.String>
**/
@Override
public
Map
<
String
,
Integer
>
getOwnDeptMap
()
{
Map
<
String
,
Integer
>
ownDeptMap
=
new
HashMap
<>();
List
<
String
>
ownDeptList
=
baseMapper
.
getTOwnDeptIdList
();
if
(
ownDeptList
!=
null
&&
!
ownDeptList
.
isEmpty
())
{
for
(
String
s
:
ownDeptList
)
{
ownDeptMap
.
put
(
s
,
CommonConstants
.
ZERO_INT
);
}
}
return
ownDeptMap
;
}
/**
* 自有员工所在结算主体Map
*/
@Override
public
Map
<
String
,
Integer
>
getOwnEmpMap
()
{
Map
<
String
,
Integer
>
ownEmpMap
=
new
HashMap
<>();
List
<
String
>
ownEmpList
=
baseMapper
.
getOwnEmpList
();
if
(
ownEmpList
!=
null
&&
!
ownEmpList
.
isEmpty
())
{
for
(
String
s
:
ownEmpList
)
{
ownEmpMap
.
put
(
s
,
CommonConstants
.
ZERO_INT
);
}
}
return
ownEmpMap
;
}
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/impl/TSalaryConfigStandardServiceImpl.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
.
impl
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
.
impl
;
import
cn.hutool.core.util.ArrayUtil
;
import
com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.toolkit.Wrappers
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.Common
;
import
com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryConfigStandard
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryConfigStandard
;
import
com.yifu.cloud.plus.v1.yifu.salary.mapper.TSalaryConfigStandardMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.mapper.TSalaryConfigStandardMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TSalaryConfigStandardService
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TSalaryConfigStandardService
;
import
com.yifu.cloud.plus.v1.yifu.salary.vo.TSalaryConfigStandardSearchVo
;
import
lombok.extern.log4j.Log4j2
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
java.util.List
;
import
java.util.List
;
/**
/**
*
工资报表配置-薪资配置6
*
@Author fxj
*
*
@Description 薪资识别配置(标准模板)
* @
author hgw
* @
Date 13:18 2022/8/6
* @
date 2022-08-05 11:40:14
* @
Param
*
/
*
@return
@Log4j2
**/
@Service
@Service
(
"tSalaryConfigStandardService"
)
public
class
TSalaryConfigStandardServiceImpl
extends
ServiceImpl
<
TSalaryConfigStandardMapper
,
TSalaryConfigStandard
>
implements
TSalaryConfigStandardService
{
public
class
TSalaryConfigStandardServiceImpl
extends
ServiceImpl
<
TSalaryConfigStandardMapper
,
TSalaryConfigStandard
>
implements
TSalaryConfigStandardService
{
/**
* 工资报表配置-薪资配置6简单分页查询
*
* @param tSalaryConfigStandard 工资报表配置-薪资配置6
* @return
*/
@Override
public
IPage
<
TSalaryConfigStandard
>
getTSalaryConfigStandardPage
(
Page
<
TSalaryConfigStandard
>
page
,
TSalaryConfigStandardSearchVo
tSalaryConfigStandard
)
{
return
baseMapper
.
getTSalaryConfigStandardPage
(
page
,
tSalaryConfigStandard
);
}
@Override
/**
public
List
<
TSalaryConfigStandard
>
noPageDiy
(
TSalaryConfigStandardSearchVo
searchVo
)
{
* 薪资识别配置(标准模板)简单分页查询
LambdaQueryWrapper
<
TSalaryConfigStandard
>
wrapper
=
buildQueryWrapper
(
searchVo
);
*
List
<
String
>
idList
=
Common
.
getList
(
searchVo
.
getIds
());
* @param tSalaryConfigStandard 薪资识别配置(标准模板)
if
(
Common
.
isNotNull
(
idList
))
{
* @return
wrapper
.
in
(
TSalaryConfigStandard:
:
getId
,
idList
);
*/
}
@Override
if
(
searchVo
.
getLimitStart
()
>=
0
&&
searchVo
.
getLimitEnd
()
>
0
)
{
public
IPage
<
TSalaryConfigStandard
>
getTSalaryConfigStandardPage
(
Page
<
TSalaryConfigStandard
>
page
,
TSalaryConfigStandard
tSalaryConfigStandard
)
{
wrapper
.
last
(
" limit "
+
searchVo
.
getLimitStart
()
+
","
+
searchVo
.
getLimitEnd
());
return
baseMapper
.
getTSalaryConfigStandardPage
(
page
,
tSalaryConfigStandard
);
}
}
wrapper
.
orderByDesc
(
BaseEntity:
:
getCreateTime
);
return
baseMapper
.
selectList
(
wrapper
);
}
private
LambdaQueryWrapper
buildQueryWrapper
(
TSalaryConfigStandardSearchVo
entity
)
{
@Override
LambdaQueryWrapper
<
TSalaryConfigStandard
>
wrapper
=
Wrappers
.
lambdaQuery
();
public
List
<
TSalaryConfigStandard
>
getTSalaryConfigStandardList
(
TSalaryConfigStandard
tSalaryConfigStandard
)
{
if
(
ArrayUtil
.
isNotEmpty
(
entity
.
getCreateTimes
()))
{
return
baseMapper
.
getTSalaryConfigStandardList
(
tSalaryConfigStandard
);
wrapper
.
ge
(
TSalaryConfigStandard:
:
getCreateTime
,
entity
.
getCreateTimes
()[
0
])
}
.
le
(
TSalaryConfigStandard:
:
getCreateTime
,
entity
.
getCreateTimes
()[
1
]);
}
if
(
Common
.
isNotNull
(
entity
.
getCreateName
()))
{
wrapper
.
eq
(
TSalaryConfigStandard:
:
getCreateName
,
entity
.
getCreateName
());
}
return
wrapper
;
}
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/impl/TSalaryTaxConfigServiceImpl.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
.
impl
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
.
impl
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
...
@@ -22,27 +6,53 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
...
@@ -22,27 +6,53 @@ import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryTaxConfig
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryTaxConfig
;
import
com.yifu.cloud.plus.v1.yifu.salary.mapper.TSalaryTaxConfigMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.mapper.TSalaryTaxConfigMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TSalaryTaxConfigService
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TSalaryTaxConfigService
;
import
com.yifu.cloud.plus.v1.yifu.salary.vo.TSalaryTaxConfigSearchVo
;
import
lombok.extern.log4j.Log4j2
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
java.util.List
;
/**
/**
*
所得税配置-薪资配置3
*
@Author fxj
*
*
@Description 个税比例及速算扣除数的配置表
* @
author hgw
* @
Date 13:19 2022/8/6
* @
date 2022-08-05 11:40:14
* @
Param
*
/
*
@return
@Log4j2
**/
@Service
@Service
(
"tSalaryTaxConfigService"
)
public
class
TSalaryTaxConfigServiceImpl
extends
ServiceImpl
<
TSalaryTaxConfigMapper
,
TSalaryTaxConfig
>
implements
TSalaryTaxConfigService
{
public
class
TSalaryTaxConfigServiceImpl
extends
ServiceImpl
<
TSalaryTaxConfigMapper
,
TSalaryTaxConfig
>
implements
TSalaryTaxConfigService
{
/**
* 所得税配置-薪资配置3简单分页查询
/**
*
* 个税比例及速算扣除数的配置表简单分页查询
* @param tSalaryTaxConfig 所得税配置-薪资配置3
*
* @return
* @param tSalaryTaxConfig 个税比例及速算扣除数的配置表
*/
* @return
@Override
*/
public
IPage
<
TSalaryTaxConfig
>
getTSalaryTaxConfigPage
(
Page
<
TSalaryTaxConfig
>
page
,
TSalaryTaxConfigSearchVo
tSalaryTaxConfig
)
{
@Override
return
baseMapper
.
getTSalaryTaxConfigPage
(
page
,
tSalaryTaxConfig
);
public
IPage
<
TSalaryTaxConfig
>
getTSalaryTaxConfigPage
(
Page
<
TSalaryTaxConfig
>
page
,
TSalaryTaxConfig
tSalaryTaxConfig
)
{
}
return
baseMapper
.
getTSalaryTaxConfigPage
(
page
,
tSalaryTaxConfig
);
}
/**
* @param tSalaryTaxConfig
* @Description: 获取个税配置
* @Author: hgw
* @Date: 2019/10/8 14:39
* @return: java.util.List<com.yifu.cloud.v1.hrms.api.entity.TSalaryTaxConfig>
**/
@Override
public
List
<
TSalaryTaxConfig
>
getTaxConfigByPersonList
(
TSalaryTaxConfig
tSalaryTaxConfig
)
{
return
baseMapper
.
getTaxConfigByPersonList
(
tSalaryTaxConfig
);
}
/**
* @param tSalaryTaxConfig
* @Description: 获取年终奖配置
* @Author: hgw
* @Date: 2019/10/8 14:40
* @return: java.util.List<com.yifu.cloud.v1.hrms.api.entity.TSalaryTaxConfig>
**/
@Override
public
List
<
TSalaryTaxConfig
>
getTaxConfigByAnnualBonusList
(
TSalaryTaxConfig
tSalaryTaxConfig
)
{
return
baseMapper
.
getTaxConfigByAnnualBonusList
(
tSalaryTaxConfig
);
}
}
}
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/impl/TSpecialDeducationSumServiceImpl.java
View file @
72d3d523
/*
* Copyright (c) 2018-2025, lengleng All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* Neither the name of the yifu4cloud.com developer nor the names of its
* contributors may be used to endorse or promote products derived from
* this software without specific prior written permission.
* Author: lengleng (wangiegie@gmail.com)
*/
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
.
impl
;
package
com
.
yifu
.
cloud
.
plus
.
v1
.
yifu
.
salary
.
service
.
impl
;
import
cn.hutool.core.bean.BeanUtil
;
import
com.baomidou.mybatisplus.core.conditions.query.QueryWrapper
;
import
cn.hutool.core.util.ArrayUtil
;
import
com.alibaba.excel.EasyExcel
;
import
com.alibaba.excel.ExcelWriter
;
import
com.alibaba.excel.context.AnalysisContext
;
import
com.alibaba.excel.read.listener.ReadListener
;
import
com.alibaba.excel.read.metadata.holder.ReadRowHolder
;
import
com.alibaba.excel.util.ListUtils
;
import
com.alibaba.excel.write.metadata.WriteSheet
;
import
com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.metadata.IPage
;
import
com.baomidou.mybatisplus.core.toolkit.Wrappers
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.plugins.pagination.Page
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.baomidou.mybatisplus.extension.service.impl.ServiceImpl
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.CommonConstants
;
import
com.yifu.cloud.plus.v1.yifu.common.core.constant.CommonConstants
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.*
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.Common
;
import
com.yifu.cloud.plus.v1.yifu.common.mybatis.base.BaseEntity
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.DateUtil
;
import
com.yifu.cloud.plus.v1.yifu.common.core.util.R
;
import
com.yifu.cloud.plus.v1.yifu.common.core.vo.YifuUser
;
import
com.yifu.cloud.plus.v1.yifu.common.security.util.SecurityUtils
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSpecialDeducationSum
;
import
com.yifu.cloud.plus.v1.yifu.salary.entity.TSpecialDeducationSum
;
import
com.yifu.cloud.plus.v1.yifu.salary.mapper.TSpecialDeducationSumMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.mapper.TSpecialDeducationSumMapper
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TSpecialDeducationSumService
;
import
com.yifu.cloud.plus.v1.yifu.salary.service.TSpecialDeducationSumService
;
import
com.yifu.cloud.plus.v1.yifu.salary.vo.TSpecialDeducationSumSearchVo
;
import
com.yifu.cloud.plus.v1.yifu.salary.vo.TSpecialDeducationSumVo
;
import
lombok.extern.log4j.Log4j2
;
import
org.springframework.stereotype.Service
;
import
org.springframework.stereotype.Service
;
import
javax.servlet.ServletOutputStream
;
import
java.time.LocalDateTime
;
import
javax.servlet.http.HttpServletResponse
;
import
java.util.HashMap
;
import
java.io.IOException
;
import
java.io.InputStream
;
import
java.net.URLEncoder
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
import
java.util.Map
;
/**
/**
*
专项扣除配置表-薪资配置5
*
@Author fxj
*
*
@Description 专项扣除
* @
author hgw
* @
Date 13:19 2022/8/6
* @
date 2022-08-05 11:40:14
* @
Param
*
/
*
@return
@Log4j2
**/
@Service
@Service
(
"tSpecialDeducationSumService"
)
public
class
TSpecialDeducationSumServiceImpl
extends
ServiceImpl
<
TSpecialDeducationSumMapper
,
TSpecialDeducationSum
>
implements
TSpecialDeducationSumService
{
public
class
TSpecialDeducationSumServiceImpl
extends
ServiceImpl
<
TSpecialDeducationSumMapper
,
TSpecialDeducationSum
>
implements
TSpecialDeducationSumService
{
/**
* 专项扣除配置表-薪资配置5简单分页查询
*
* @param tSpecialDeducationSum 专项扣除配置表-薪资配置5
* @return
*/
@Override
public
IPage
<
TSpecialDeducationSum
>
getTSpecialDeducationSumPage
(
Page
<
TSpecialDeducationSum
>
page
,
TSpecialDeducationSumSearchVo
tSpecialDeducationSum
)
{
return
baseMapper
.
getTSpecialDeducationSumPage
(
page
,
tSpecialDeducationSum
);
}
/**
/**
* 专项扣除配置表-薪资配置5批量导出
* 简单分页查询
*
*
* @return
* @param tSpecialDeducationSum
*/
* @return
@Override
*/
public
void
listExport
(
HttpServletResponse
response
,
TSpecialDeducationSumSearchVo
searchVo
)
{
@Override
String
fileName
=
"不良记录批量导出"
+
DateUtil
.
getThisTime
()
+
".xlsx"
;
public
IPage
<
TSpecialDeducationSum
>
getTSpecialDeducationSumPage
(
Page
<
TSpecialDeducationSum
>
page
,
TSpecialDeducationSum
tSpecialDeducationSum
)
{
//获取要导出的列表
return
baseMapper
.
getTSpecialDeducationSumPage
(
page
,
tSpecialDeducationSum
);
List
<
TSpecialDeducationSum
>
list
=
new
ArrayList
<>();
}
long
count
=
noPageCountDiy
(
searchVo
);
ServletOutputStream
out
=
null
;
try
{
out
=
response
.
getOutputStream
();
response
.
setContentType
(
"multipart/form-data"
);
response
.
setCharacterEncoding
(
"utf-8"
);
response
.
setHeader
(
"Content-Disposition"
,
"attachment;filename="
+
URLEncoder
.
encode
(
fileName
,
"UTF-8"
));
// 这里 需要指定写用哪个class去写,然后写到第一个sheet,然后文件流会自动关闭
//EasyExcel.write(out, TEmpBadRecord.class).sheet("不良记录").doWrite(list);
ExcelWriter
excelWriter
=
EasyExcel
.
write
(
out
,
TSpecialDeducationSum
.
class
).
build
();
int
index
=
0
;
if
(
count
>
CommonConstants
.
ZERO_INT
)
{
for
(
int
i
=
0
;
i
<=
count
;
)
{
// 获取实际记录
searchVo
.
setLimitStart
(
i
);
searchVo
.
setLimitEnd
(
CommonConstants
.
EXCEL_EXPORT_LIMIT
);
list
=
noPageDiy
(
searchVo
);
if
(
Common
.
isNotNull
(
list
))
{
ExcelUtil
<
TSpecialDeducationSum
>
util
=
new
ExcelUtil
<>(
TSpecialDeducationSum
.
class
);
for
(
TSpecialDeducationSum
vo
:
list
)
{
util
.
convertEntity
(
vo
,
null
,
null
,
null
);
}
}
if
(
Common
.
isNotNull
(
list
))
{
WriteSheet
writeSheet
=
EasyExcel
.
writerSheet
(
"专项扣除配置表-薪资配置5"
+
index
).
build
();
excelWriter
.
write
(
list
,
writeSheet
);
index
++;
}
i
=
i
+
CommonConstants
.
EXCEL_EXPORT_LIMIT
;
if
(
Common
.
isNotNull
(
list
))
{
list
.
clear
();
}
}
}
else
{
WriteSheet
writeSheet
=
EasyExcel
.
writerSheet
(
"专项扣除配置表-薪资配置5"
+
index
).
build
();
excelWriter
.
write
(
list
,
writeSheet
);
}
if
(
Common
.
isNotNull
(
list
))
{
list
.
clear
();
}
out
.
flush
();
excelWriter
.
finish
();
}
catch
(
Exception
e
)
{
log
.
error
(
"执行异常"
,
e
);
}
finally
{
try
{
if
(
null
!=
out
)
{
out
.
close
();
}
}
catch
(
IOException
e
)
{
log
.
error
(
"执行异常"
,
e
);
}
}
}
@Override
/**
public
List
<
TSpecialDeducationSum
>
noPageDiy
(
TSpecialDeducationSumSearchVo
searchVo
)
{
* @param tSpecialDeducationSum
LambdaQueryWrapper
<
TSpecialDeducationSum
>
wrapper
=
buildQueryWrapper
(
searchVo
);
* @Description: 查找专项信息
List
<
String
>
idList
=
Common
.
getList
(
searchVo
.
getIds
());
* @Author: hgw
if
(
Common
.
isNotNull
(
idList
))
{
* @Date: 2019/9/30 16:19
wrapper
.
in
(
TSpecialDeducationSum:
:
getId
,
idList
);
* @return: com.baomidou.mybatisplus.core.metadata.IPage<com.yifu.cloud.v1.hrms.api.entity.TSpecialDeducationSum>
}
**/
if
(
searchVo
.
getLimitStart
()
>=
0
&&
searchVo
.
getLimitEnd
()
>
0
)
{
@Override
wrapper
.
last
(
" limit "
+
searchVo
.
getLimitStart
()
+
","
+
searchVo
.
getLimitEnd
());
public
List
<
TSpecialDeducationSum
>
getTSpecialDeducationSumList
(
TSpecialDeducationSum
tSpecialDeducationSum
)
{
}
return
baseMapper
.
getTSpecialDeducationSumList
(
tSpecialDeducationSum
);
wrapper
.
orderByDesc
(
BaseEntity:
:
getCreateTime
);
}
return
baseMapper
.
selectList
(
wrapper
);
}
private
Long
noPageCountDiy
(
TSpecialDeducationSumSearchVo
searchVo
)
{
/**
LambdaQueryWrapper
<
TSpecialDeducationSum
>
wrapper
=
buildQueryWrapper
(
searchVo
);
* @Description: 查找专项信息
List
<
String
>
idList
=
Common
.
getList
(
searchVo
.
getIds
());
* @Author: hgw
if
(
Common
.
isNotNull
(
idList
))
{
* @Date: 2019/9/30 16:19
wrapper
.
in
(
TSpecialDeducationSum:
:
getId
,
idList
);
* @return: com.baomidou.mybatisplus.core.metadata.IPage<com.yifu.cloud.v1.hrms.api.entity.TSpecialDeducationSum>
}
**/
return
baseMapper
.
selectCount
(
wrapper
);
@Override
}
public
TSpecialDeducationSum
getTSpecialDeducationSum
(
String
yearMonth
,
String
idNumber
,
String
invoiceTitle
)
{
return
baseMapper
.
getTSpecialDeducationSum
(
yearMonth
,
idNumber
,
invoiceTitle
);
}
private
LambdaQueryWrapper
buildQueryWrapper
(
TSpecialDeducationSumSearchVo
entity
)
{
/**
LambdaQueryWrapper
<
TSpecialDeducationSum
>
wrapper
=
Wrappers
.
lambdaQuery
();
* @param yearMonth
if
(
ArrayUtil
.
isNotEmpty
(
entity
.
getCreateTimes
()))
{
* @param idCardList
wrapper
.
ge
(
TSpecialDeducationSum:
:
getCreateTime
,
entity
.
getCreateTimes
()[
0
])
* @Description: 工资查询所需的全部list,组装Map来使用
.
le
(
TSpecialDeducationSum:
:
getCreateTime
,
* @Author: hgw
entity
.
getCreateTimes
()[
1
]);
* @Date: 2022/1/26 16:45
}
* @return: java.util.Map<java.lang.String, com.yifu.cloud.v1.hrms.api.entity.TSpecialDeducationSum>
if
(
Common
.
isNotNull
(
entity
.
getCreateName
()))
{
**/
wrapper
.
eq
(
TSpecialDeducationSum:
:
getCreateName
,
entity
.
getCreateName
());
@Override
}
public
Map
<
String
,
TSpecialDeducationSum
>
getTSpecialDeducationSumMap
(
String
yearMonth
,
List
<
String
>
idCardList
)
{
return
wrapper
;
Map
<
String
,
TSpecialDeducationSum
>
sdsMap
=
new
HashMap
<>();
}
if
(
Common
.
isNotNull
(
yearMonth
)
&&
idCardList
!=
null
&&
!
idCardList
.
isEmpty
())
{
List
<
TSpecialDeducationSum
>
sdsList
=
baseMapper
.
getListByIdCardList
(
yearMonth
,
idCardList
);
if
(
sdsList
!=
null
&&
!
sdsList
.
isEmpty
())
{
for
(
TSpecialDeducationSum
sds
:
sdsList
)
{
sdsMap
.
put
(
sds
.
getIdNumber
()
+
CommonConstants
.
DOWN_LINE_STRING
+
sds
.
getDeclareTitle
(),
sds
);
}
}
}
return
sdsMap
;
}
@Override
/**
public
R
<
List
<
ErrorMessage
>>
importDiy
(
InputStream
inputStream
)
{
* @param yearMonth 年月
List
<
ErrorMessage
>
errorMessageList
=
new
ArrayList
<>();
* @param invoiceTitle 申报单位
ExcelUtil
<
TSpecialDeducationSumVo
>
util1
=
new
ExcelUtil
<>(
TSpecialDeducationSumVo
.
class
);
* @Description: 删除专项扣除
;
* @Author: hgw
// 写法2:
* @Date: 2020/4/1 15:11
// 匿名内部类 不用额外写一个DemoDataListener
* @return: int
// 这里 需要指定读用哪个class去读,然后读取第一个sheet 文件流会自动关闭
**/
try
{
@Override
EasyExcel
.
read
(
inputStream
,
TSpecialDeducationSumVo
.
class
,
new
ReadListener
<
TSpecialDeducationSumVo
>()
{
public
int
deleteByUnitAndMonth
(
String
yearMonth
,
String
invoiceTitle
)
{
/**
return
baseMapper
.
deleteByUnitAndMonth
(
yearMonth
,
invoiceTitle
);
* 单次缓存的数据量
}
*/
public
static
final
int
BATCH_COUNT
=
CommonConstants
.
BATCH_COUNT
;
/**
*临时存储
*/
private
List
<
TSpecialDeducationSumVo
>
cachedDataList
=
ListUtils
.
newArrayListWithExpectedSize
(
BATCH_COUNT
);
@Override
/**
public
void
invoke
(
TSpecialDeducationSumVo
data
,
AnalysisContext
context
)
{
* @param sdsList
ReadRowHolder
readRowHolder
=
context
.
readRowHolder
();
* @Description: 保存专项
Integer
rowIndex
=
readRowHolder
.
getRowIndex
();
* @Author: hgw
data
.
setRowIndex
(
rowIndex
+
1
);
* @Date: 2019/10/14 14:48
ErrorMessage
errorMessage
=
util1
.
checkEntity
(
data
,
data
.
getRowIndex
());
* @return: com.yifu.cloud.v1.common.core.util.R
if
(
Common
.
isNotNull
(
errorMessage
))
{
**/
errorMessageList
.
add
(
errorMessage
);
@Override
}
else
{
public
R
uploadSds
(
List
<
TSpecialDeducationSum
>
sdsList
)
{
cachedDataList
.
add
(
data
);
if
(
sdsList
!=
null
&&
sdsList
.
size
()
>
CommonConstants
.
ZERO_INT
)
{
}
TSpecialDeducationSum
sds
=
null
;
if
(
cachedDataList
.
size
()
>=
BATCH_COUNT
)
{
int
rowNum
=
sdsList
.
size
();
saveData
();
String
nowYearMonth
=
DateUtil
.
getCurrentDateString
(
"yyyyMM"
);
// 存储完成清理 list
String
yearMonth
=
DateUtil
.
getYearMonth
(
sdsList
.
get
(
0
).
getCreateStart
());
cachedDataList
=
ListUtils
.
newArrayListWithExpectedSize
(
BATCH_COUNT
);
if
(
Common
.
isNotNull
(
yearMonth
))
{
}
if
(!
yearMonth
.
equals
(
nowYearMonth
))
{
}
return
R
.
failed
(
"所得期间-不是当前年月:"
+
nowYearMonth
+
",不允许导入"
);
}
}
else
{
return
R
.
failed
(
"请检查‘所得期间起’单元格格式是文本格式,且满足日期格式yyyy-MM-dd或yyyyMMdd"
);
}
String
declareTitle
=
sdsList
.
get
(
0
).
getDeclareTitle
();
if
(
Common
.
isEmpty
(
declareTitle
))
{
return
R
.
failed
(
"申报单位不能为空"
);
}
@Override
TSpecialDeducationSum
sdsCheck
=
new
TSpecialDeducationSum
();
public
void
doAfterAllAnalysed
(
AnalysisContext
context
)
{
sdsCheck
.
setCreateMonth
(
yearMonth
);
saveData
();
sdsCheck
.
setDeclareTitle
(
declareTitle
);
}
QueryWrapper
<
TSpecialDeducationSum
>
queryWrapperSc
=
new
QueryWrapper
<>();
queryWrapperSc
.
setEntity
(
sdsCheck
);
List
<
TSpecialDeducationSum
>
scList
=
this
.
list
(
queryWrapperSc
);
if
(
scList
!=
null
&&
scList
.
size
()
>
CommonConstants
.
ZERO_INT
)
{
return
R
.
failed
(
"当前月同一申报单位已存在数据,请先删除"
);
}
YifuUser
user
=
SecurityUtils
.
getUser
();
if
(
null
==
user
||
null
==
user
.
getId
())
{
return
R
.
failed
(
"新建失败-获取登录人信息为空"
);
}
LocalDateTime
nowDate
=
LocalDateTime
.
now
();
for
(
TSpecialDeducationSum
s
:
sdsList
)
{
s
.
setCreateMonth
(
yearMonth
);
s
.
setCreateTime
(
nowDate
);
s
.
setCreateUser
(
String
.
valueOf
(
user
.
getId
()));
}
return
new
R
<>(
this
.
saveBatch
(
sdsList
));
}
return
R
.
failed
(
"数据不可为空"
);
}
/**
* 加上存储数据库
*/
private
void
saveData
()
{
log
.
info
(
"{}条数据,开始存储数据库!"
,
cachedDataList
.
size
());
importTSpecialDeducationSum
(
cachedDataList
,
errorMessageList
);
log
.
info
(
"存储数据库成功!"
);
}
}).
sheet
().
doRead
();
}
catch
(
Exception
e
)
{
log
.
error
(
CommonConstants
.
IMPORT_DATA_ANALYSIS_ERROR
,
e
);
return
R
.
failed
(
CommonConstants
.
IMPORT_DATA_ANALYSIS_ERROR
);
}
return
R
.
ok
(
errorMessageList
);
}
private
void
importTSpecialDeducationSum
(
List
<
TSpecialDeducationSumVo
>
excelVOList
,
List
<
ErrorMessage
>
errorMessageList
)
{
// 个性化校验逻辑
ErrorMessage
errorMsg
;
// 执行数据插入操作 组装
for
(
int
i
=
0
;
i
<
excelVOList
.
size
();
i
++)
{
TSpecialDeducationSumVo
excel
=
excelVOList
.
get
(
i
);
// 数据合法情况 TODO
// 插入
insertExcel
(
excel
);
errorMessageList
.
add
(
new
ErrorMessage
(
excel
.
getRowIndex
(),
CommonConstants
.
SAVE_SUCCESS
));
}
}
/**
* 插入excel bad record
*/
private
void
insertExcel
(
TSpecialDeducationSumVo
excel
)
{
TSpecialDeducationSum
insert
=
new
TSpecialDeducationSum
();
BeanUtil
.
copyProperties
(
excel
,
insert
);
this
.
save
(
insert
);
}
}
}
yifu-salary/yifu-salary-biz/src/main/resources/mapper/TConfigSalaryMapper.xml
View file @
72d3d523
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!--
~
~ Copyright (c) 2018-2025, lengleng All rights reserved.
~
~ Redistribution and use in source and binary forms, with or without
~ modification, are permitted provided that the following conditions are met:
~
~ Redistributions of source code must retain the above copyright notice,
~ this list of conditions and the following disclaimer.
~ Redistributions in binary form must reproduce the above copyright
~ notice, this list of conditions and the following disclaimer in the
~ documentation and/or other materials provided with the distribution.
~ Neither the name of the yifu4cloud.com developer nor the names of its
~ contributors may be used to endorse or promote products derived from
~ this software without specific prior written permission.
~ Author: lengleng (wangiegie@gmail.com)
~
-->
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.yifu.cloud.plus.v1.yifu.salary.mapper.TConfigSalaryMapper"
>
<mapper
namespace=
"com.yifu.cloud.plus.v1.yifu.salary.mapper.TConfigSalaryMapper"
>
<resultMap
id=
"tConfigSalaryMap"
type=
"com.yifu.cloud.plus.v1.yifu.salary.entity.TConfigSalary"
>
<resultMap
id=
"tConfigSalaryMap"
type=
"com.yifu.cloud.plus.v1.yifu.salary.entity.TConfigSalary"
>
<id
property=
"id"
column=
"ID"
/>
<id
property=
"id"
column=
"ID"
/>
<result
property=
"name"
column=
"NAME"
/>
<result
property=
"name"
column=
"NAME"
/>
<result
property=
"departId"
column=
"DEPART_ID"
/>
<result
property=
"departId"
column=
"DEPART_ID"
/>
<result
property=
"departNo"
column=
"DEPART_NO"
/>
<result
property=
"departNo"
column=
"DEPART_NO"
/>
<result
property=
"departName"
column=
"DEPART_NAME"
/>
<result
property=
"departName"
column=
"DEPART_NAME"
/>
<result
property=
"salaryMonth"
column=
"SALARY_MONTH"
/>
<result
property=
"salaryMonth"
column=
"SALARY_MONTH"
/>
<result
property=
"socialMonth"
column=
"SOCIAL_MONTH"
/>
<result
property=
"settleMonth"
column=
"SETTLE_MONTH"
/>
<result
property=
"fundMonth"
column=
"FUND_MONTH"
/>
<result
property=
"socialMonth"
column=
"SOCIAL_MONTH"
/>
<result
property=
"socialPriority"
column=
"SOCIAL_PRIORITY"
/>
<result
property=
"fundMonth"
column=
"FUND_MONTH"
/>
<result
property=
"fundPriority"
column=
"FUND_PRIORITY"
/>
<result
property=
"socialPriority"
column=
"SOCIAL_PRIORITY"
/>
<result
property=
"grantType"
column=
"GRANT_TYPE"
/>
<result
property=
"fundPriority"
column=
"FUND_PRIORITY"
/>
</resultMap>
<result
property=
"grantType"
column=
"GRANT_TYPE"
/>
<sql
id=
"Base_Column_List"
>
<result
property=
"annualBonusType"
column=
"ANNUAL_BONUS_TYPE"
/>
a.ID,
</resultMap>
a.NAME,
a.DEPART_ID,
<!--tConfigSalary简单分页查询-->
a.DEPART_NO,
<select
id=
"getTConfigSalaryPage"
resultMap=
"tConfigSalaryMap"
>
a.DEPART_NAME,
SELECT
a.SALARY_MONTH,
ID,
a.SOCIAL_MONTH,
NAME,
a.FUND_MONTH,
DEPART_ID,
a.SOCIAL_PRIORITY,
DEPART_NO,
a.FUND_PRIORITY,
DEPART_NAME,
a.GRANT_TYPE
SALARY_MONTH,
</sql>
SETTLE_MONTH,
<sql
id=
"tConfigSalary_where"
>
SOCIAL_MONTH,
<if
test=
"tConfigSalary != null"
>
FUND_MONTH,
<if
test=
"tConfigSalary.id != null and tConfigSalary.id.trim() != ''"
>
SOCIAL_PRIORITY,
AND a.ID = #{tConfigSalary.id}
FUND_PRIORITY,
</if>
GRANT_TYPE,
<if
test=
"tConfigSalary.name != null and tConfigSalary.name.trim() != ''"
>
ANNUAL_BONUS_TYPE
AND a.NAME = #{tConfigSalary.name}
FROM t_config_salary
</if>
<where>
<if
test=
"tConfigSalary.departId != null and tConfigSalary.departId.trim() != ''"
>
1=1
AND a.DEPART_ID = #{tConfigSalary.departId}
<if
test=
"tConfigSalary.id != null and tConfigSalary.id.trim() != ''"
>
</if>
AND ID = #{tConfigSalary.id}
<if
test=
"tConfigSalary.departNo != null and tConfigSalary.departNo.trim() != ''"
>
</if>
AND a.DEPART_NO = #{tConfigSalary.departNo}
<if
test=
"tConfigSalary.name != null and tConfigSalary.name.trim() != ''"
>
</if>
AND NAME like '%${tConfigSalary.name}%'
<if
test=
"tConfigSalary.departName != null and tConfigSalary.departName.trim() != ''"
>
</if>
AND a.DEPART_NAME = #{tConfigSalary.departName}
<if
test=
"tConfigSalary.departId != null and tConfigSalary.departId.trim() != ''"
>
</if>
AND DEPART_ID = #{tConfigSalary.departId}
<if
test=
"tConfigSalary.salaryMonth != null"
>
</if>
AND a.SALARY_MONTH = #{tConfigSalary.salaryMonth}
<if
test=
"tConfigSalary.departNo != null and tConfigSalary.departNo.trim() != ''"
>
</if>
AND DEPART_NO = #{tConfigSalary.departNo}
<if
test=
"tConfigSalary.socialMonth != null"
>
</if>
AND a.SOCIAL_MONTH = #{tConfigSalary.socialMonth}
<if
test=
"tConfigSalary.departName != null and tConfigSalary.departName.trim() != ''"
>
</if>
AND DEPART_NAME = #{tConfigSalary.departName}
<if
test=
"tConfigSalary.fundMonth != null"
>
</if>
AND a.FUND_MONTH = #{tConfigSalary.fundMonth}
<if
test=
"tConfigSalary.salaryMonth != null "
>
</if>
AND SALARY_MONTH = #{tConfigSalary.salaryMonth}
<if
test=
"tConfigSalary.socialPriority != null"
>
</if>
AND a.SOCIAL_PRIORITY = #{tConfigSalary.socialPriority}
<if
test=
"tConfigSalary.settleMonth != null "
>
</if>
AND SETTLE_MONTH = #{tConfigSalary.settleMonth}
<if
test=
"tConfigSalary.fundPriority != null"
>
</if>
AND a.FUND_PRIORITY = #{tConfigSalary.fundPriority}
<if
test=
"tConfigSalary.socialMonth != null "
>
</if>
AND SOCIAL_MONTH = #{tConfigSalary.socialMonth}
<if
test=
"tConfigSalary.grantType != null"
>
</if>
AND a.GRANT_TYPE = #{tConfigSalary.grantType}
<if
test=
"tConfigSalary.fundMonth != null "
>
</if>
AND FUND_MONTH = #{tConfigSalary.fundMonth}
</if>
</if>
</sql>
<if
test=
"tConfigSalary.socialPriority != null "
>
<!--tConfigSalary简单分页查询-->
AND SOCIAL_PRIORITY = #{tConfigSalary.socialPriority}
<select
id=
"getTConfigSalaryPage"
resultMap=
"tConfigSalaryMap"
>
</if>
SELECT
<if
test=
"tConfigSalary.fundPriority != null "
>
<include
refid=
"Base_Column_List"
/>
AND FUND_PRIORITY = #{tConfigSalary.fundPriority}
FROM t_config_salary a
</if>
<where>
<if
test=
"tConfigSalary.grantType != null "
>
1=1
AND GRANT_TYPE = #{tConfigSalary.grantType}
<include
refid=
"tConfigSalary_where"
/>
</if>
</where>
<if
test=
"tConfigSalary.annualBonusType != null "
>
</select>
AND ANNUAL_BONUS_TYPE = #{tConfigSalary.annualBonusType}
</if>
<!--数据权限判断-->
<if
test=
"settleDomainVos != null and settleDomainVos.size() > 0"
>
and DEPART_ID in
<foreach
collection=
"settleDomainVos"
item=
"param"
index=
"index"
open=
"("
close=
")"
separator=
","
>
#{param.id}
</foreach>
</if>
</where>
</select>
</mapper>
</mapper>
yifu-salary/yifu-salary-biz/src/main/resources/mapper/TMinSalaryMapper.xml
View file @
72d3d523
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!--
~
~ Copyright (c) 2018-2025, lengleng All rights reserved.
~
~ Redistribution and use in source and binary forms, with or without
~ modification, are permitted provided that the following conditions are met:
~
~ Redistributions of source code must retain the above copyright notice,
~ this list of conditions and the following disclaimer.
~ Redistributions in binary form must reproduce the above copyright
~ notice, this list of conditions and the following disclaimer in the
~ documentation and/or other materials provided with the distribution.
~ Neither the name of the yifu4cloud.com developer nor the names of its
~ contributors may be used to endorse or promote products derived from
~ this software without specific prior written permission.
~ Author: lengleng (wangiegie@gmail.com)
~
-->
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.yifu.cloud.plus.v1.yifu.salary.mapper.TMinSalaryMapper"
>
<mapper
namespace=
"com.yifu.cloud.plus.v1.yifu.salary.mapper.TMinSalaryMapper"
>
<resultMap
id=
"tMinSalaryMap"
type=
"com.yifu.cloud.plus.v1.yifu.salary.entity.TMinSalary"
>
<resultMap
id=
"tMinSalaryMap"
type=
"com.yifu.cloud.plus.v1.yifu.salary.entity.TMinSalary"
>
<id
property=
"id"
column=
"id"
/>
<id
property=
"id"
column=
"id"
/>
<result
property=
"province"
column=
"province"
/>
<result
property=
"province"
column=
"province"
/>
<result
property=
"city"
column=
"city"
/>
<result
property=
"city"
column=
"city"
/>
<result
property=
"town"
column=
"town"
/>
<result
property=
"town"
column=
"town"
/>
<result
property=
"salaryBase"
column=
"salary_base"
/>
<result
property=
"salaryBase"
column=
"salary_base"
/>
<result
property=
"status"
column=
"status"
/>
<result
property=
"status"
column=
"status"
/>
<result
property=
"startDate"
column=
"start_date"
/>
<result
property=
"startDate"
column=
"start_date"
/>
<result
property=
"endDate"
column=
"end_date"
/>
<result
property=
"endDate"
column=
"end_date"
/>
<result
property=
"createBy"
column=
"CREATE_BY"
/>
<result
property=
"createUser"
column=
"create_user"
/>
<result
property=
"createName"
column=
"CREATE_NAME"
/>
<result
property=
"createDate"
column=
"create_date"
/>
<result
property=
"createTime"
column=
"CREATE_TIME"
/>
</resultMap>
<result
property=
"updateBy"
column=
"UPDATE_BY"
/>
<result
property=
"updateTime"
column=
"UPDATE_TIME"
/>
<!--tMinSalary简单分页查询-->
</resultMap>
<select
id=
"getTMinSalaryPage"
resultMap=
"tMinSalaryMap"
>
<sql
id=
"Base_Column_List"
>
SELECT
a.id,
id,
a.province,
province,
a.city,
city,
a.town,
town,
a.salary_base,
salary_base,
a.status,
status,
a.start_date,
start_date,
a.end_date,
end_date,
a.CREATE_BY,
create_user,
a.CREATE_NAME,
create_date
a.CREATE_TIME,
FROM t_min_salary
a.UPDATE_BY,
<where>
a.UPDATE_TIME
1=1
</sql>
<if
test=
"tMinSalary.id != null and tMinSalary.id.trim() != ''"
>
<sql
id=
"tMinSalary_where"
>
AND id = #{tMinSalary.id}
<if
test=
"tMinSalary != null"
>
</if>
<if
test=
"tMinSalary.id != null and tMinSalary.id.trim() != ''"
>
<if
test=
"tMinSalary.province != null"
>
AND a.id = #{tMinSalary.id}
AND province = #{tMinSalary.province}
</if>
</if>
<if
test=
"tMinSalary.province != null"
>
<if
test=
"tMinSalary.city != null"
>
AND a.province = #{tMinSalary.province}
AND city = #{tMinSalary.city}
</if>
</if>
<if
test=
"tMinSalary.city != null"
>
<if
test=
"tMinSalary.town != null"
>
AND a.city = #{tMinSalary.city}
AND town = #{tMinSalary.town}
</if>
</if>
<if
test=
"tMinSalary.town != null"
>
<if
test=
"tMinSalary.salaryBase != null and tMinSalary.salaryBase.trim() != ''"
>
AND a.town = #{tMinSalary.town}
AND salary_base = #{tMinSalary.salaryBase}
</if>
</if>
<if
test=
"tMinSalary.salaryBase != null and tMinSalary.salaryBase.trim() != ''"
>
<if
test=
"tMinSalary.status != null"
>
AND a.salary_base = #{tMinSalary.salaryBase}
AND status = #{tMinSalary.status}
</if>
</if>
<if
test=
"tMinSalary.status != null"
>
<if
test=
"tMinSalary.startDate != null"
>
AND a.status = #{tMinSalary.status}
AND start_date = #{tMinSalary.startDate}
</if>
</if>
<if
test=
"tMinSalary.startDate != null"
>
<if
test=
"tMinSalary.endDate != null"
>
AND a.start_date = #{tMinSalary.startDate}
AND end_date = #{tMinSalary.endDate}
</if>
</if>
<if
test=
"tMinSalary.endDate != null"
>
<if
test=
"tMinSalary.createUser != null and tMinSalary.createUser.trim() != ''"
>
AND a.end_date = #{tMinSalary.endDate}
AND create_user = #{tMinSalary.createUser}
</if>
</if>
</if>
<if
test=
"tMinSalary.createDate != null"
>
</sql>
AND create_date = #{tMinSalary.createDate}
<!--tMinSalary简单分页查询-->
</if>
<select
id=
"getTMinSalaryPage"
resultMap=
"tMinSalaryMap"
>
</where>
SELECT
</select>
<include
refid=
"Base_Column_List"
/>
FROM t_min_salary a
<where>
1=1
<include
refid=
"tMinSalary_where"
/>
</where>
</select>
</mapper>
</mapper>
yifu-salary/yifu-salary-biz/src/main/resources/mapper/TOwnDeptMapper.xml
View file @
72d3d523
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!--
~
~ Copyright (c) 2018-2025, lengleng All rights reserved.
~
~ Redistribution and use in source and binary forms, with or without
~ modification, are permitted provided that the following conditions are met:
~
~ Redistributions of source code must retain the above copyright notice,
~ this list of conditions and the following disclaimer.
~ Redistributions in binary form must reproduce the above copyright
~ notice, this list of conditions and the following disclaimer in the
~ documentation and/or other materials provided with the distribution.
~ Neither the name of the yifu4cloud.com developer nor the names of its
~ contributors may be used to endorse or promote products derived from
~ this software without specific prior written permission.
~ Author: lengleng (wangiegie@gmail.com)
~
-->
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.yifu.cloud.plus.v1.yifu.salary.mapper.TOwnDeptMapper"
>
<mapper
namespace=
"com.yifu.cloud.plus.v1.yifu.salary.mapper.TOwnDeptMapper"
>
<resultMap
id=
"tOwnDeptMap"
type=
"com.yifu.cloud.plus.v1.yifu.salary.entity.TOwnDept"
>
<resultMap
id=
"tOwnDeptMap"
type=
"com.yifu.cloud.plus.v1.yifu.salary.entity.TOwnDept"
>
<id
property=
"id"
column=
"id"
/>
<id
property=
"id"
column=
"id"
/>
<result
property=
"deptId"
column=
"dept_id"
/>
<result
property=
"deptId"
column=
"dept_id"
/>
<result
property=
"deptNo"
column=
"dept_no"
/>
<result
property=
"deptNo"
column=
"dept_no"
/>
<result
property=
"deptName"
column=
"dept_name"
/>
<result
property=
"deptName"
column=
"dept_name"
/>
<result
property=
"unitName"
column=
"unit_name"
/>
<result
property=
"unitName"
column=
"unit_name"
/>
</resultMap>
</resultMap>
<sql
id=
"Base_Column_List"
>
<sql
id=
"Base_Column_List"
>
a.id,
a.id,
a.dept_id,
a.dept_id,
a.dept_no,
a.dept_no,
a.dept_name,
a.dept_name,
a.unit_name
a.unit_name
</sql>
</sql>
<sql
id=
"tOwnDept_where"
>
<sql
id=
"tOwnDept_where"
>
<if
test=
"tOwnDept != null"
>
<if
test=
"tOwnDept != null"
>
<if
test=
"tOwnDept.id != null"
>
<if
test=
"tOwnDept.id != null"
>
AND a.id = #{tOwnDept.id}
AND a.id = #{tOwnDept.id}
</if>
</if>
<if
test=
"tOwnDept.deptId != null and tOwnDept.deptId.trim() != ''"
>
<if
test=
"tOwnDept.deptId != null and tOwnDept.deptId.trim() != ''"
>
AND a.dept_id = #{tOwnDept.deptId}
AND a.dept_id = #{tOwnDept.deptId}
</if>
</if>
<if
test=
"tOwnDept.deptNo != null and tOwnDept.deptNo.trim() != ''"
>
<if
test=
"tOwnDept.deptNo != null and tOwnDept.deptNo.trim() != ''"
>
AND a.dept_no = #{tOwnDept.deptNo}
AND a.dept_no = #{tOwnDept.deptNo}
</if>
</if>
<if
test=
"tOwnDept.deptName != null and tOwnDept.deptName.trim() != ''"
>
<if
test=
"tOwnDept.deptName != null and tOwnDept.deptName.trim() != ''"
>
AND a.dept_name = #{tOwnDept.deptName}
AND a.dept_name = #{tOwnDept.deptName}
</if>
</if>
<if
test=
"tOwnDept.unitName != null and tOwnDept.unitName.trim() != ''"
>
<if
test=
"tOwnDept.unitName != null and tOwnDept.unitName.trim() != ''"
>
AND a.unit_name = #{tOwnDept.unitName}
AND a.unit_name = #{tOwnDept.unitName}
</if>
</if>
</if>
</if>
</sql>
</sql>
<!--tOwnDept简单分页查询-->
<!--tOwnDept简单分页查询-->
...
@@ -66,4 +44,12 @@
...
@@ -66,4 +44,12 @@
<include
refid=
"tOwnDept_where"
/>
<include
refid=
"tOwnDept_where"
/>
</where>
</where>
</select>
</select>
<!--tOwnDept简单list查询-->
<select
id=
"getTOwnDeptIdList"
resultType=
"String"
>
SELECT a.dept_id FROM t_own_dept a
</select>
<!--获取自有员工身份证-->
<select
id=
"getOwnEmpList"
resultType=
"String"
>
SELECT EMP_IDCARD FROM view_own_employee
</select>
</mapper>
</mapper>
yifu-salary/yifu-salary-biz/src/main/resources/mapper/TSalaryConfigStandardMapper.xml
View file @
72d3d523
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!--
~
~ Copyright (c) 2018-2025, lengleng All rights reserved.
~
~ Redistribution and use in source and binary forms, with or without
~ modification, are permitted provided that the following conditions are met:
~
~ Redistributions of source code must retain the above copyright notice,
~ this list of conditions and the following disclaimer.
~ Redistributions in binary form must reproduce the above copyright
~ notice, this list of conditions and the following disclaimer in the
~ documentation and/or other materials provided with the distribution.
~ Neither the name of the yifu4cloud.com developer nor the names of its
~ contributors may be used to endorse or promote products derived from
~ this software without specific prior written permission.
~ Author: lengleng (wangiegie@gmail.com)
~
-->
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.yifu.cloud.plus.v1.yifu.salary.mapper.TSalaryConfigStandardMapper"
>
<mapper
namespace=
"com.yifu.cloud.plus.v1.yifu.salary.mapper.TSalaryConfigStandardMapper"
>
<resultMap
id=
"tSalaryConfigStandardMap"
type=
"com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryConfigStandard"
>
<resultMap
id=
"tSalaryConfigStandardMap"
type=
"com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryConfigStandard"
>
<id
property=
"id"
column=
"ID"
/>
<id
property=
"id"
column=
"ID"
/>
<result
property=
"cnName"
column=
"CN_NAME"
/>
<result
property=
"cnName"
column=
"CN_NAME"
/>
<result
property=
"dbFiedName"
column=
"DB_FIED_NAME"
/>
<result
property=
"dbFiedName"
column=
"DB_FIED_NAME"
/>
<result
property=
"javaFiedName"
column=
"JAVA_FIED_NAME"
/>
<result
property=
"javaFiedName"
column=
"JAVA_FIED_NAME"
/>
<result
property=
"modelType"
column=
"MODEL_TYPE"
/>
<result
property=
"modelType"
column=
"MODEL_TYPE"
/>
<result
property=
"isMustNeed"
column=
"IS_MUST_NEED"
/>
<result
property=
"isMustNeed"
column=
"IS_MUST_NEED"
/>
<result
property=
"isTax"
column=
"IS_TAX"
/>
<result
property=
"isTax"
column=
"IS_TAX"
/>
<result
property=
"orderLine"
column=
"order_line"
/>
<result
property=
"createUser"
column=
"CREATE_USER"
/>
<result
property=
"createBy"
column=
"CREATE_BY"
/>
<result
property=
"createTime"
column=
"CREATE_TIME"
/>
<result
property=
"createName"
column=
"CREATE_NAME"
/>
<result
property=
"orderLine"
column=
"order_line"
/>
<result
property=
"createTime"
column=
"CREATE_TIME"
/>
</resultMap>
<result
property=
"updateBy"
column=
"UPDATE_BY"
/>
<result
property=
"updateTime"
column=
"UPDATE_TIME"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
a.ID,
a.CN_NAME,
a.DB_FIED_NAME,
a.JAVA_FIED_NAME,
a.MODEL_TYPE,
a.IS_MUST_NEED,
a.IS_TAX,
a.order_line,
a.CREATE_BY,
a.CREATE_NAME,
a.CREATE_TIME,
a.UPDATE_BY,
a.UPDATE_TIME
</sql>
<sql
id=
"tSalaryConfigStandard_where"
>
<sql
id=
"tSalaryConfigStandard_where"
>
<if
test=
"tSalaryConfigStandard != null"
>
<if
test=
"tSalaryConfigStandard != null
"
>
<if
test=
"tSalaryConfigStandard.id != null and tSalaryConfigStandard.id.trim() != ''"
>
<if
test=
"tSalaryConfigStandard.id != null and tSalaryConfigStandard.id.trim() != ''"
>
AND a.
ID = #{tSalaryConfigStandard.id}
AND
ID = #{tSalaryConfigStandard.id}
</if>
</if>
<if
test=
"tSalaryConfigStandard.cnName != null and tSalaryConfigStandard.cnName.trim() != ''"
>
<if
test=
"tSalaryConfigStandard.cnName != null and tSalaryConfigStandard.cnName.trim() != ''"
>
AND a.
CN_NAME = #{tSalaryConfigStandard.cnName}
AND
CN_NAME = #{tSalaryConfigStandard.cnName}
</if>
</if>
<if
test=
"tSalaryConfigStandard.dbFiedName != null and tSalaryConfigStandard.dbFiedName.trim() != ''"
>
<if
test=
"tSalaryConfigStandard.dbFiedName != null and tSalaryConfigStandard.dbFiedName.trim() != ''"
>
AND a.
DB_FIED_NAME = #{tSalaryConfigStandard.dbFiedName}
AND
DB_FIED_NAME = #{tSalaryConfigStandard.dbFiedName}
</if>
</if>
<if
test=
"tSalaryConfigStandard.javaFiedName != null and tSalaryConfigStandard.javaFiedName.trim() != ''"
>
<if
test=
"tSalaryConfigStandard.javaFiedName != null and tSalaryConfigStandard.javaFiedName.trim() != ''"
>
AND a.
JAVA_FIED_NAME = #{tSalaryConfigStandard.javaFiedName}
AND
JAVA_FIED_NAME = #{tSalaryConfigStandard.javaFiedName}
</if>
</if>
<if
test=
"tSalaryConfigStandard.modelType != null and tSalaryConfigStandard.modelType.trim() != ''"
>
<if
test=
"tSalaryConfigStandard.modelType != null and tSalaryConfigStandard.modelType.trim() != ''"
>
AND a.
MODEL_TYPE = #{tSalaryConfigStandard.modelType}
AND
MODEL_TYPE = #{tSalaryConfigStandard.modelType}
</if>
</if>
<if
test=
"tSalaryConfigStandard.isMustNeed != null and tSalaryConfigStandard.isMustNeed.trim() != ''"
>
<if
test=
"tSalaryConfigStandard.isMustNeed != null and tSalaryConfigStandard.isMustNeed.trim() != ''"
>
AND a.
IS_MUST_NEED = #{tSalaryConfigStandard.isMustNeed}
AND
IS_MUST_NEED = #{tSalaryConfigStandard.isMustNeed}
</if>
</if>
<if
test=
"tSalaryConfigStandard.isTax != null
"
>
<if
test=
"tSalaryConfigStandard.createUser != null and tSalaryConfigStandard.createUser.trim() != ''
"
>
AND a.IS_TAX = #{tSalaryConfigStandard.isTax
}
AND CREATE_USER = #{tSalaryConfigStandard.createUser
}
</if>
</if>
<if
test=
"tSalaryConfigStandard.orderLin
e != null"
>
<if
test=
"tSalaryConfigStandard.createTim
e != null"
>
AND a.order_line = #{tSalaryConfigStandard.orderLin
e}
AND CREATE_TIME = #{tSalaryStandard.createTim
e}
</if>
</if>
</if>
</if>
</sql>
</sql>
<!--tSalaryConfigStandard简单分页查询-->
<!--tSalaryConfigStandard简单分页查询-->
<select
id=
"getTSalaryConfigStandardPage"
resultMap=
"tSalaryConfigStandardMap"
>
<select
id=
"getTSalaryConfigStandardPage"
resultMap=
"tSalaryConfigStandardMap"
>
SELECT
SELECT
<include
refid=
"Base_Column_List"
/>
ID,
FROM t_salary_config_standard a
CN_NAME,
DB_FIED_NAME,
JAVA_FIED_NAME,
MODEL_TYPE,
IS_MUST_NEED,
IS_TAX,
CREATE_USER,
CREATE_TIME
FROM t_salary_config_standard
<where>
<where>
1=1
1=1
<include
refid=
"tSalaryConfigStandard_where"
/>
<include
refid=
"tSalaryConfigStandard_where"
/>
</where>
</where>
</select>
</select>
<!--tSalaryConfigStandard列表-->
<select
id=
"getTSalaryConfigStandardList"
resultMap=
"tSalaryConfigStandardMap"
>
SELECT
ID,
DB_FIED_NAME,
JAVA_FIED_NAME
FROM t_salary_config_standard
<where>
order_line != 999
<include
refid=
"tSalaryConfigStandard_where"
/>
</where>
order by order_line asc
</select>
</mapper>
</mapper>
yifu-salary/yifu-salary-biz/src/main/resources/mapper/TSalaryTaxConfigMapper.xml
View file @
72d3d523
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!--
~
~ Copyright (c) 2018-2025, lengleng All rights reserved.
~
~ Redistribution and use in source and binary forms, with or without
~ modification, are permitted provided that the following conditions are met:
~
~ Redistributions of source code must retain the above copyright notice,
~ this list of conditions and the following disclaimer.
~ Redistributions in binary form must reproduce the above copyright
~ notice, this list of conditions and the following disclaimer in the
~ documentation and/or other materials provided with the distribution.
~ Neither the name of the yifu4cloud.com developer nor the names of its
~ contributors may be used to endorse or promote products derived from
~ this software without specific prior written permission.
~ Author: lengleng (wangiegie@gmail.com)
~
-->
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.yifu.cloud.plus.v1.yifu.salary.mapper.TSalaryTaxConfigMapper"
>
<mapper
namespace=
"com.yifu.cloud.plus.v1.yifu.salary.mapper.TSalaryTaxConfigMapper"
>
<resultMap
id=
"tSalaryTaxConfigMap"
type=
"com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryTaxConfig"
>
<resultMap
id=
"tSalaryTaxConfigMap"
type=
"com.yifu.cloud.plus.v1.yifu.salary.entity.TSalaryTaxConfig"
>
<id
property=
"id"
column=
"ID"
/>
<id
property=
"id"
column=
"ID"
/>
<result
property=
"taxableIncomeRemark"
column=
"TAXABLE_INCOME_REMARK"
/>
<result
property=
"taxableIncomeRemark"
column=
"TAXABLE_INCOME_REMARK"
/>
<result
property=
"withholdingRate"
column=
"WITHHOLDING_RATE"
/>
<result
property=
"withholdingRate"
column=
"WITHHOLDING_RATE"
/>
<result
property=
"quickDeducation"
column=
"QUICK_DEDUCATION"
/>
<result
property=
"quickDeducation"
column=
"QUICK_DEDUCATION"
/>
<result
property=
"minIncome"
column=
"MIN_INCOME"
/>
<result
property=
"minIncome"
column=
"MIN_INCOME"
/>
<result
property=
"maxIncome"
column=
"MAX_INCOME"
/>
<result
property=
"maxIncome"
column=
"MAX_INCOME"
/>
<result
property=
"level"
column=
"LEVEL"
/>
<result
property=
"level"
column=
"LEVEL"
/>
<result
property=
"type"
column=
"TYPE"
/>
<result
property=
"type"
column=
"TYPE"
/>
<result
property=
"startPoint"
column=
"START_POINT"
/>
<result
property=
"startPoint"
column=
"START_POINT"
/>
</resultMap>
</resultMap>
<sql
id=
"Base_Column_List"
>
a.ID,
a.TAXABLE_INCOME_REMARK,
a.WITHHOLDING_RATE,
a.QUICK_DEDUCATION,
a.MIN_INCOME,
a.MAX_INCOME,
a.LEVEL,
a.TYPE,
a.START_POINT
</sql>
<sql
id=
"tSalaryTaxConfig_where"
>
<if
test=
"tSalaryTaxConfig != null"
>
<if
test=
"tSalaryTaxConfig.id != null and tSalaryTaxConfig.id.trim() != ''"
>
AND a.ID = #{tSalaryTaxConfig.id}
</if>
<if
test=
"tSalaryTaxConfig.taxableIncomeRemark != null and tSalaryTaxConfig.taxableIncomeRemark.trim() != ''"
>
AND a.TAXABLE_INCOME_REMARK = #{tSalaryTaxConfig.taxableIncomeRemark}
</if>
<if
test=
"tSalaryTaxConfig.withholdingRate != null"
>
AND a.WITHHOLDING_RATE = #{tSalaryTaxConfig.withholdingRate}
</if>
<if
test=
"tSalaryTaxConfig.quickDeducation != null"
>
AND a.QUICK_DEDUCATION = #{tSalaryTaxConfig.quickDeducation}
</if>
<if
test=
"tSalaryTaxConfig.minIncome != null"
>
AND a.MIN_INCOME = #{tSalaryTaxConfig.minIncome}
</if>
<if
test=
"tSalaryTaxConfig.maxIncome != null"
>
AND a.MAX_INCOME = #{tSalaryTaxConfig.maxIncome}
</if>
<if
test=
"tSalaryTaxConfig.level != null"
>
AND a.LEVEL = #{tSalaryTaxConfig.level}
</if>
<if
test=
"tSalaryTaxConfig.type != null"
>
AND a.TYPE = #{tSalaryTaxConfig.type}
</if>
<if
test=
"tSalaryTaxConfig.startPoint != null"
>
AND a.START_POINT = #{tSalaryTaxConfig.startPoint}
</if>
</if>
</sql>
<!--tSalaryTaxConfig简单分页查询-->
<!--tSalaryTaxConfig简单分页查询-->
<select
id=
"getTSalaryTaxConfigPage"
resultMap=
"tSalaryTaxConfigMap"
>
<select
id=
"getTSalaryTaxConfigPage"
resultMap=
"tSalaryTaxConfigMap"
>
SELECT
SELECT
<include
refid=
"Base_Column_List"
/>
ID,
FROM t_salary_tax_config a
TAXABLE_INCOME_REMARK,
WITHHOLDING_RATE,
QUICK_DEDUCATION,
MIN_INCOME,
MAX_INCOME,
LEVEL,
TYPE,
START_POINT
FROM t_salary_tax_config
<where>
<where>
1=1
1=1
<include
refid=
"tSalaryTaxConfig_where"
/>
<if
test=
"tSalaryTaxConfig.id != null and tSalaryTaxConfig.id.trim() != ''"
>
AND ID = #{tSalaryTaxConfig.id}
</if>
<if
test=
"tSalaryTaxConfig.taxableIncomeRemark != null and tSalaryTaxConfig.taxableIncomeRemark.trim() != ''"
>
AND TAXABLE_INCOME_REMARK = #{tSalaryTaxConfig.taxableIncomeRemark}
</if>
<if
test=
"tSalaryTaxConfig.withholdingRate != null"
>
AND WITHHOLDING_RATE = #{tSalaryTaxConfig.withholdingRate}
</if>
<if
test=
"tSalaryTaxConfig.quickDeducation != null"
>
AND QUICK_DEDUCATION = #{tSalaryTaxConfig.quickDeducation}
</if>
<if
test=
"tSalaryTaxConfig.minIncome != null"
>
AND MIN_INCOME = #{tSalaryTaxConfig.minIncome}
</if>
<if
test=
"tSalaryTaxConfig.maxIncome != null"
>
AND MAX_INCOME = #{tSalaryTaxConfig.maxIncome}
</if>
<if
test=
"tSalaryTaxConfig.level != null"
>
AND LEVEL = #{tSalaryTaxConfig.level}
</if>
<if
test=
"tSalaryTaxConfig.type != null"
>
AND TYPE = #{tSalaryTaxConfig.type}
</if>
<if
test=
"tSalaryTaxConfig.startPoint != null"
>
AND START_POINT = #{tSalaryTaxConfig.startPoint}
</if>
</where>
</select>
<!--tSalaryTaxConfig获取个税配置-->
<select
id=
"getTaxConfigByPersonList"
resultMap=
"tSalaryTaxConfigMap"
>
SELECT
ID,
TAXABLE_INCOME_REMARK,
WITHHOLDING_RATE,
QUICK_DEDUCATION,
MIN_INCOME,
MAX_INCOME,
LEVEL,
TYPE,
START_POINT
FROM t_salary_tax_config
<where>
TYPE = 0
<if
test=
"tSalaryTaxConfig.id != null and tSalaryTaxConfig.id.trim() != ''"
>
AND ID = #{tSalaryTaxConfig.id}
</if>
<if
test=
"tSalaryTaxConfig.taxableIncomeRemark != null and tSalaryTaxConfig.taxableIncomeRemark.trim() != ''"
>
AND TAXABLE_INCOME_REMARK = #{tSalaryTaxConfig.taxableIncomeRemark}
</if>
<if
test=
"tSalaryTaxConfig.withholdingRate != null"
>
AND WITHHOLDING_RATE = #{tSalaryTaxConfig.withholdingRate}
</if>
<if
test=
"tSalaryTaxConfig.quickDeducation != null"
>
AND QUICK_DEDUCATION = #{tSalaryTaxConfig.quickDeducation}
</if>
<if
test=
"tSalaryTaxConfig.minIncome != null"
>
AND MIN_INCOME = #{tSalaryTaxConfig.minIncome}
</if>
<if
test=
"tSalaryTaxConfig.maxIncome != null"
>
AND MAX_INCOME = #{tSalaryTaxConfig.maxIncome}
</if>
<if
test=
"tSalaryTaxConfig.level != null"
>
AND LEVEL = #{tSalaryTaxConfig.level}
</if>
<if
test=
"tSalaryTaxConfig.startPoint != null"
>
AND START_POINT = #{tSalaryTaxConfig.startPoint}
</if>
</where>
</where>
</select>
</select>
<!--tSalaryTaxConfig获取年终奖配置-->
<select
id=
"getTaxConfigByAnnualBonusList"
resultMap=
"tSalaryTaxConfigMap"
>
SELECT
ID,
TAXABLE_INCOME_REMARK,
WITHHOLDING_RATE,
QUICK_DEDUCATION,
MIN_INCOME,
MAX_INCOME,
LEVEL,
TYPE,
START_POINT
FROM t_salary_tax_config
<where>
TYPE = 1
<if
test=
"tSalaryTaxConfig.id != null and tSalaryTaxConfig.id.trim() != ''"
>
AND ID = #{tSalaryTaxConfig.id}
</if>
<if
test=
"tSalaryTaxConfig.taxableIncomeRemark != null and tSalaryTaxConfig.taxableIncomeRemark.trim() != ''"
>
AND TAXABLE_INCOME_REMARK = #{tSalaryTaxConfig.taxableIncomeRemark}
</if>
<if
test=
"tSalaryTaxConfig.withholdingRate != null"
>
AND WITHHOLDING_RATE = #{tSalaryTaxConfig.withholdingRate}
</if>
<if
test=
"tSalaryTaxConfig.quickDeducation != null"
>
AND QUICK_DEDUCATION = #{tSalaryTaxConfig.quickDeducation}
</if>
<if
test=
"tSalaryTaxConfig.minIncome != null"
>
AND MIN_INCOME = #{tSalaryTaxConfig.minIncome}
</if>
<if
test=
"tSalaryTaxConfig.maxIncome != null"
>
AND MAX_INCOME = #{tSalaryTaxConfig.maxIncome}
</if>
<if
test=
"tSalaryTaxConfig.level != null"
>
AND LEVEL = #{tSalaryTaxConfig.level}
</if>
<if
test=
"tSalaryTaxConfig.startPoint != null"
>
AND START_POINT = #{tSalaryTaxConfig.startPoint}
</if>
</where>
</select>
</mapper>
</mapper>
yifu-salary/yifu-salary-biz/src/main/resources/mapper/TSpecialDeducationSumMapper.xml
View file @
72d3d523
<?xml version="1.0" encoding="UTF-8"?>
<?xml version="1.0" encoding="UTF-8"?>
<!--
~
~ Copyright (c) 2018-2025, lengleng All rights reserved.
~
~ Redistribution and use in source and binary forms, with or without
~ modification, are permitted provided that the following conditions are met:
~
~ Redistributions of source code must retain the above copyright notice,
~ this list of conditions and the following disclaimer.
~ Redistributions in binary form must reproduce the above copyright
~ notice, this list of conditions and the following disclaimer in the
~ documentation and/or other materials provided with the distribution.
~ Neither the name of the yifu4cloud.com developer nor the names of its
~ contributors may be used to endorse or promote products derived from
~ this software without specific prior written permission.
~ Author: lengleng (wangiegie@gmail.com)
~
-->
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper
namespace=
"com.yifu.cloud.plus.v1.yifu.salary.mapper.TSpecialDeducationSumMapper"
>
<mapper
namespace=
"com.yifu.cloud.plus.v1.yifu.salary.mapper.TSpecialDeducationSumMapper"
>
<resultMap
id=
"tSpecialDeducationSumMap"
type=
"com.yifu.cloud.plus.v1.yifu.salary.entity.TSpecialDeducationSum"
>
<resultMap
id=
"tSpecialDeducationSumMap"
type=
"com.yifu.cloud.plus.v1.yifu.salary.entity.TSpecialDeducationSum"
>
<id
property=
"id"
column=
"id"
/>
<id
property=
"id"
column=
"id"
/>
<result
property=
"createMonth"
column=
"CREATE_MONTH"
/>
<result
property=
"createUser"
column=
"CREATE_USER"
/>
<result
property=
"declareTitle"
column=
"DECLARE_TITLE"
/>
<result
property=
"createTime"
column=
"CREATE_TIME"
/>
<result
property=
"jobNumber"
column=
"JOB_NUMBER"
/>
<result
property=
"createMonth"
column=
"CREATE_MONTH"
/>
<result
property=
"name"
column=
"NAME"
/>
<result
property=
"declareTitle"
column=
"DECLARE_TITLE"
/>
<result
property=
"type"
column=
"TYPE"
/>
<result
property=
"jobNumber"
column=
"JOB_NUMBER"
/>
<result
property=
"idNumber"
column=
"ID_NUMBER"
/>
<result
property=
"name"
column=
"NAME"
/>
<result
property=
"createStart"
column=
"CREATE_START"
/>
<result
property=
"type"
column=
"TYPE"
/>
<result
property=
"createEnd"
column=
"CREATE_END"
/>
<result
property=
"idNumber"
column=
"ID_NUMBER"
/>
<result
property=
"currentIncome"
column=
"CURRENT_INCOME"
/>
<result
property=
"createStart"
column=
"CREATE_START"
/>
<result
property=
"currentIncomeTaxFree"
column=
"CURRENT_INCOME_TAX_FREE"
/>
<result
property=
"createEnd"
column=
"CREATE_END"
/>
<result
property=
"insurancePension"
column=
"INSURANCE_PENSION"
/>
<result
property=
"currentIncome"
column=
"CURRENT_INCOME"
/>
<result
property=
"insuranceMedical"
column=
"INSURANCE_MEDICAL"
/>
<result
property=
"currentIncomeTaxFree"
column=
"CURRENT_INCOME_TAX_FREE"
/>
<result
property=
"insuranceUnemployment"
column=
"INSURANCE_UNEMPLOYMENT"
/>
<result
property=
"insurancePension"
column=
"INSURANCE_PENSION"
/>
<result
property=
"fund"
column=
"FUND"
/>
<result
property=
"insuranceMedical"
column=
"INSURANCE_MEDICAL"
/>
<result
property=
"sumChildEduMoney"
column=
"SUM_CHILD_EDU_MONEY"
/>
<result
property=
"insuranceUnemployment"
column=
"INSURANCE_UNEMPLOYMENT"
/>
<result
property=
"sumHousingLoanMoney"
column=
"SUM_HOUSING_LOAN_MONEY"
/>
<result
property=
"fund"
column=
"FUND"
/>
<result
property=
"sumHousingRentMoney"
column=
"SUM_HOUSING_RENT_MONEY"
/>
<result
property=
"sumChildEduMoney"
column=
"SUM_CHILD_EDU_MONEY"
/>
<result
property=
"sumSupportElderlyMoney"
column=
"SUM_SUPPORT_ELDERLY_MONEY"
/>
<result
property=
"sumHousingLoanMoney"
column=
"SUM_HOUSING_LOAN_MONEY"
/>
<result
property=
"sumContinuingEducationMoney"
column=
"SUM_CONTINUING_EDUCATION_MONEY"
/>
<result
property=
"sumHousingRentMoney"
column=
"SUM_HOUSING_RENT_MONEY"
/>
<result
property=
"sumBabyMoney"
column=
"SUM_BABY_MONEY"
/>
<result
property=
"sumSupportElderlyMoney"
column=
"SUM_SUPPORT_ELDERLY_MONEY"
/>
<result
property=
"enterpriseAnnuity"
column=
"ENTERPRISE_ANNUITY"
/>
<result
property=
"sumContinuingEducationMoney"
column=
"SUM_CONTINUING_EDUCATION_MONEY"
/>
<result
property=
"takingRisks"
column=
"TAKING_RISKS"
/>
<result
property=
"sumBabyMoney"
column=
"SUM_BABY_MONEY"
/>
<result
property=
"taxDeferredInsurance"
column=
"TAX_DEFERRED_INSURANCE"
/>
<result
property=
"enterpriseAnnuity"
column=
"ENTERPRISE_ANNUITY"
/>
<result
property=
"otherMoney"
column=
"OTHER_MONEY"
/>
<result
property=
"takingRisks"
column=
"TAKING_RISKS"
/>
<result
property=
"donationAmount"
column=
"DONATION_AMOUNT"
/>
<result
property=
"taxDeferredInsurance"
column=
"TAX_DEFERRED_INSURANCE"
/>
<result
property=
"preTaxDeduction"
column=
"PRE_TAX_DEDUCTION"
/>
<result
property=
"otherMoney"
column=
"OTHER_MONEY"
/>
<result
property=
"taxSavings"
column=
"TAX_SAVINGS"
/>
<result
property=
"donationAmount"
column=
"DONATION_AMOUNT"
/>
<result
property=
"costReduction"
column=
"COST_REDUCTION"
/>
<result
property=
"preTaxDeduction"
column=
"PRE_TAX_DEDUCTION"
/>
<result
property=
"taxesWithheld"
column=
"TAXES_WITHHELD"
/>
<result
property=
"taxSavings"
column=
"TAX_SAVINGS"
/>
<result
property=
"remark"
column=
"REMARK"
/>
<result
property=
"costReduction"
column=
"COST_REDUCTION"
/>
<result
property=
"createBy"
column=
"CREATE_BY"
/>
<result
property=
"taxesWithheld"
column=
"TAXES_WITHHELD"
/>
<result
property=
"createName"
column=
"CREATE_NAME"
/>
<result
property=
"remark"
column=
"REMARK"
/>
<result
property=
"createTime"
column=
"CREATE_TIME"
/>
</resultMap>
<result
property=
"updateBy"
column=
"UPDATE_BY"
/>
<result
property=
"updateTime"
column=
"UPDATE_TIME"
/>
</resultMap>
<sql
id=
"Base_Column_List"
>
<sql
id=
"Base_Column_List"
>
a.id,
id,
a.CREATE_MONTH,
CREATE_USER,
a.DECLARE_TITLE,
CREATE_TIME,
a.JOB_NUMBER,
CREATE_MONTH,
a.NAME,
DECLARE_TITLE,
a.TYPE,
JOB_NUMBER,
a.ID_NUMBER,
NAME,
a.CREATE_START,
TYPE,
a.CREATE_END,
ID_NUMBER,
a.CURRENT_INCOME,
CREATE_START,
a.CURRENT_INCOME_TAX_FREE,
CREATE_END,
a.INSURANCE_PENSION,
CURRENT_INCOME,
a.INSURANCE_MEDICAL,
CURRENT_INCOME_TAX_FREE,
a.INSURANCE_UNEMPLOYMENT,
INSURANCE_PENSION,
a.FUND,
INSURANCE_MEDICAL,
a.SUM_CHILD_EDU_MONEY,
INSURANCE_UNEMPLOYMENT,
a.SUM_HOUSING_LOAN_MONEY,
FUND,
a.SUM_HOUSING_RENT_MONEY,
SUM_CHILD_EDU_MONEY,
a.SUM_SUPPORT_ELDERLY_MONEY,
SUM_HOUSING_LOAN_MONEY,
a.SUM_CONTINUING_EDUCATION_MONEY,
SUM_HOUSING_RENT_MONEY,
a.SUM_BABY_MONEY,
SUM_SUPPORT_ELDERLY_MONEY,
a.ENTERPRISE_ANNUITY,
SUM_CONTINUING_EDUCATION_MONEY,
a.TAKING_RISKS,
SUM_BABY_MONEY,
a.TAX_DEFERRED_INSURANCE,
ENTERPRISE_ANNUITY,
a.OTHER_MONEY,
TAKING_RISKS,
a.DONATION_AMOUNT,
TAX_DEFERRED_INSURANCE,
a.PRE_TAX_DEDUCTION,
OTHER_MONEY,
a.TAX_SAVINGS,
DONATION_AMOUNT,
a.COST_REDUCTION,
PRE_TAX_DEDUCTION,
a.TAXES_WITHHELD,
TAX_SAVINGS,
a.REMARK,
COST_REDUCTION,
a.CREATE_BY,
TAXES_WITHHELD,
a.CREATE_NAME,
REMARK
a.CREATE_TIME,
a.UPDATE_BY,
a.UPDATE_TIME
</sql>
</sql>
<sql
id=
"tSpecialDeducationSum_where"
>
<sql
id=
"tSpecialDeducationSum_where"
>
<if
test=
"tSpecialDeducationSum != null"
>
<if
test=
"tSpecialDeducationSum != null"
>
<if
test=
"tSpecialDeducationSum.id != null and tSpecialDeducationSum.id.trim() != ''"
>
<if
test=
"tSpecialDeducationSum.id != null and tSpecialDeducationSum.id.trim() != ''"
>
AND a.id = #{tSpecialDeducationSum.id}
AND id = #{tSpecialDeducationSum.id}
</if>
</if>
<if
test=
"tSpecialDeducationSum.createMonth != null and tSpecialDeducationSum.createMonth.trim() != ''"
>
<if
test=
"tSpecialDeducationSum.createUser != null and tSpecialDeducationSum.createUser.trim() != ''"
>
AND a.CREATE_MONTH = #{tSpecialDeducationSum.createMonth}
AND CREATE_USER = #{tSpecialDeducationSum.createUser}
</if>
</if>
<if
test=
"tSpecialDeducationSum.declareTitle != null and tSpecialDeducationSum.declareTitle.trim() != ''"
>
<if
test=
"tSpecialDeducationSum.createTime != null"
>
AND a.DECLARE_TITLE = #{tSpecialDeducationSum.declareTitle}
AND CREATE_TIME = #{tSpecialDeducationSum.createTime}
</if>
</if>
<if
test=
"tSpecialDeducationSum.jobNumber != null and tSpecialDeducationSum.jobNumber.trim() != ''"
>
<if
test=
"tSpecialDeducationSum.createMonth != null and tSpecialDeducationSum.createMonth.trim() != ''"
>
AND a.JOB_NUMBER = #{tSpecialDeducationSum.jobNumber}
AND CREATE_MONTH = #{tSpecialDeducationSum.createMonth}
</if>
</if>
<if
test=
"tSpecialDeducationSum.name != null and tSpecialDeducationSum.name.trim() != ''"
>
<if
test=
"tSpecialDeducationSum.declareTitle != null and tSpecialDeducationSum.declareTitle.trim() != ''"
>
AND a.NAME = #{tSpecialDeducationSum.name}
AND DECLARE_TITLE like '%${tSpecialDeducationSum.declareTitle}%'
</if>
</if>
<if
test=
"tSpecialDeducationSum.type != null and tSpecialDeducationSum.type.trim() != ''"
>
<if
test=
"tSpecialDeducationSum.jobNumber != null and tSpecialDeducationSum.jobNumber.trim() != ''"
>
AND a.TYPE = #{tSpecialDeducationSum.type}
AND JOB_NUMBER = #{tSpecialDeducationSum.jobNumber}
</if>
</if>
<if
test=
"tSpecialDeducationSum.idNumber != null and tSpecialDeducationSum.idNumber.trim() != ''"
>
<if
test=
"tSpecialDeducationSum.name != null and tSpecialDeducationSum.name.trim() != ''"
>
AND a.ID_NUMBER = #{tSpecialDeducationSum.idNumber}
AND NAME like '%${tSpecialDeducationSum.name}%'
</if>
</if>
<if
test=
"tSpecialDeducationSum.createStart != null and tSpecialDeducationSum.createStart.trim() != ''"
>
<if
test=
"tSpecialDeducationSum.type != null and tSpecialDeducationSum.type.trim() != ''"
>
AND a.CREATE_START = #{tSpecialDeducationSum.createStart}
AND TYPE = #{tSpecialDeducationSum.type}
</if>
</if>
<if
test=
"tSpecialDeducationSum.createEnd != null and tSpecialDeducationSum.createEnd.trim() != ''"
>
<if
test=
"tSpecialDeducationSum.idNumber != null and tSpecialDeducationSum.idNumber.trim() != ''"
>
AND a.CREATE_END = #{tSpecialDeducationSum.createEnd}
AND ID_NUMBER = #{tSpecialDeducationSum.idNumber}
</if>
</if>
<if
test=
"tSpecialDeducationSum.currentIncome != null"
>
<if
test=
"tSpecialDeducationSum.createStart != null and tSpecialDeducationSum.createStart.trim() != ''"
>
AND a.CURRENT_INCOME = #{tSpecialDeducationSum.currentIncome}
AND CREATE_START = #{tSpecialDeducationSum.createStart}
</if>
</if>
<if
test=
"tSpecialDeducationSum.currentIncomeTaxFree != null"
>
<if
test=
"tSpecialDeducationSum.createEnd != null and tSpecialDeducationSum.createEnd.trim() != ''"
>
AND a.CURRENT_INCOME_TAX_FREE = #{tSpecialDeducationSum.currentIncomeTaxFree}
AND CREATE_END = #{tSpecialDeducationSum.createEnd}
</if>
</if>
<if
test=
"tSpecialDeducationSum.insurancePension != null"
>
<if
test=
"tSpecialDeducationSum.currentIncome != null"
>
AND a.INSURANCE_PENSION = #{tSpecialDeducationSum.insurancePension}
AND CURRENT_INCOME = #{tSpecialDeducationSum.currentIncome}
</if>
</if>
<if
test=
"tSpecialDeducationSum.insuranceMedical != null"
>
<if
test=
"tSpecialDeducationSum.currentIncomeTaxFree != null"
>
AND a.INSURANCE_MEDICAL = #{tSpecialDeducationSum.insuranceMedical}
AND CURRENT_INCOME_TAX_FREE = #{tSpecialDeducationSum.currentIncomeTaxFree}
</if>
</if>
<if
test=
"tSpecialDeducationSum.insuranceUnemployment != null"
>
<if
test=
"tSpecialDeducationSum.insurancePension != null"
>
AND a.INSURANCE_UNEMPLOYMENT = #{tSpecialDeducationSum.insuranceUnemployment}
AND INSURANCE_PENSION = #{tSpecialDeducationSum.insurancePension}
</if>
</if>
<if
test=
"tSpecialDeducationSum.fund != null"
>
<if
test=
"tSpecialDeducationSum.insuranceMedical != null"
>
AND a.FUND = #{tSpecialDeducationSum.fund}
AND INSURANCE_MEDICAL = #{tSpecialDeducationSum.insuranceMedical}
</if>
</if>
<if
test=
"tSpecialDeducationSum.sumChildEduMoney != null"
>
<if
test=
"tSpecialDeducationSum.insuranceUnemployment != null"
>
AND a.SUM_CHILD_EDU_MONEY = #{tSpecialDeducationSum.sumChildEduMoney}
AND INSURANCE_UNEMPLOYMENT = #{tSpecialDeducationSum.insuranceUnemployment}
</if>
</if>
<if
test=
"tSpecialDeducationSum.sumHousingLoanMoney != null"
>
<if
test=
"tSpecialDeducationSum.fund != null"
>
AND a.SUM_HOUSING_LOAN_MONEY = #{tSpecialDeducationSum.sumHousingLoanMoney}
AND FUND = #{tSpecialDeducationSum.fund}
</if>
</if>
<if
test=
"tSpecialDeducationSum.sumHousingRentMoney != null"
>
<if
test=
"tSpecialDeducationSum.sumChildEduMoney != null"
>
AND a.SUM_HOUSING_RENT_MONEY = #{tSpecialDeducationSum.sumHousingRentMoney}
AND SUM_CHILD_EDU_MONEY = #{tSpecialDeducationSum.sumChildEduMoney}
</if>
</if>
<if
test=
"tSpecialDeducationSum.sumSupportElderlyMoney != null"
>
<if
test=
"tSpecialDeducationSum.sumHousingLoanMoney != null"
>
AND a.SUM_SUPPORT_ELDERLY_MONEY = #{tSpecialDeducationSum.sumSupportElderlyMoney}
AND SUM_HOUSING_LOAN_MONEY = #{tSpecialDeducationSum.sumHousingLoanMoney}
</if>
</if>
<if
test=
"tSpecialDeducationSum.sumContinuingEducationMoney != null"
>
<if
test=
"tSpecialDeducationSum.sumHousingRentMoney != null"
>
AND a.SUM_CONTINUING_EDUCATION_MONEY = #{tSpecialDeducationSum.sumContinuingEducationMoney}
AND SUM_HOUSING_RENT_MONEY = #{tSpecialDeducationSum.sumHousingRentMoney}
</if>
</if>
<if
test=
"tSpecialDeducationSum.sumBabyMoney != null"
>
<if
test=
"tSpecialDeducationSum.sumSupportElderlyMoney != null"
>
AND a.SUM_BABY_MONEY = #{tSpecialDeducationSum.sumBabyMoney}
AND SUM_SUPPORT_ELDERLY_MONEY = #{tSpecialDeducationSum.sumSupportElderlyMoney}
</if>
</if>
<if
test=
"tSpecialDeducationSum.enterpriseAnnuity != null"
>
<if
test=
"tSpecialDeducationSum.sumContinuingEducationMoney != null"
>
AND a.ENTERPRISE_ANNUITY = #{tSpecialDeducationSum.enterpriseAnnuity}
AND SUM_CONTINUING_EDUCATION_MONEY = #{tSpecialDeducationSum.sumContinuingEducationMoney}
</if>
</if>
<if
test=
"tSpecialDeducationSum.takingRisks != null"
>
<if
test=
"tSpecialDeducationSum.sumBabyMoney != null"
>
AND a.TAKING_RISKS = #{tSpecialDeducationSum.takingRisks}
AND SUM_BABY_MONEY = #{tSpecialDeducationSum.sumBabyMoney}
</if>
</if>
<if
test=
"tSpecialDeducationSum.taxDeferredInsurance != null"
>
<if
test=
"tSpecialDeducationSum.enterpriseAnnuity != null"
>
AND a.TAX_DEFERRED_INSURANCE = #{tSpecialDeducationSum.taxDeferredInsurance}
AND ENTERPRISE_ANNUITY = #{tSpecialDeducationSum.enterpriseAnnuity}
</if>
</if>
<if
test=
"tSpecialDeducationSum.otherMoney != null"
>
<if
test=
"tSpecialDeducationSum.takingRisks != null"
>
AND a.OTHER_MONEY = #{tSpecialDeducationSum.otherMoney}
AND TAKING_RISKS = #{tSpecialDeducationSum.takingRisks}
</if>
</if>
<if
test=
"tSpecialDeducationSum.donationAmount != null"
>
<if
test=
"tSpecialDeducationSum.taxDeferredInsurance != null"
>
AND a.DONATION_AMOUNT = #{tSpecialDeducationSum.donationAmount}
AND TAX_DEFERRED_INSURANCE = #{tSpecialDeducationSum.taxDeferredInsurance}
</if>
</if>
<if
test=
"tSpecialDeducationSum.preTaxDeduction != null"
>
<if
test=
"tSpecialDeducationSum.otherMoney != null"
>
AND a.PRE_TAX_DEDUCTION = #{tSpecialDeducationSum.preTaxDeduction}
AND OTHER_MONEY = #{tSpecialDeducationSum.otherMoney}
</if>
</if>
<if
test=
"tSpecialDeducationSum.taxSavings != null"
>
<if
test=
"tSpecialDeducationSum.donationAmount != null"
>
AND a.TAX_SAVINGS = #{tSpecialDeducationSum.taxSavings}
AND DONATION_AMOUNT = #{tSpecialDeducationSum.donationAmount}
</if>
</if>
<if
test=
"tSpecialDeducationSum.costReduction != null"
>
<if
test=
"tSpecialDeducationSum.preTaxDeduction != null"
>
AND a.COST_REDUCTION = #{tSpecialDeducationSum.costReduction}
AND PRE_TAX_DEDUCTION = #{tSpecialDeducationSum.preTaxDeduction}
</if>
</if>
<if
test=
"tSpecialDeducationSum.taxesWithheld != null"
>
<if
test=
"tSpecialDeducationSum.taxSavings != null"
>
AND a.TAXES_WITHHELD = #{tSpecialDeducationSum.taxesWithheld}
AND TAX_SAVINGS = #{tSpecialDeducationSum.taxSavings}
</if>
</if>
<if
test=
"tSpecialDeducationSum.remark != null and tSpecialDeducationSum.remark.trim() != ''"
>
<if
test=
"tSpecialDeducationSum.costReduction != null"
>
AND a.REMARK = #{tSpecialDeducationSum.remark}
AND COST_REDUCTION = #{tSpecialDeducationSum.costReduction}
</if>
</if>
<if
test=
"tSpecialDeducationSum.taxesWithheld != null"
>
AND TAXES_WITHHELD = #{tSpecialDeducationSum.taxesWithheld}
</if>
<if
test=
"tSpecialDeducationSum.remark != null and tSpecialDeducationSum.remark.trim() != ''"
>
AND REMARK = #{tSpecialDeducationSum.remark}
</if>
</if>
</if>
</sql>
</sql>
<!--tSpecialDeducationSum简单分页查询-->
<!--tSpecialDeducationSum简单分页查询-->
<select
id=
"getTSpecialDeducationSumPage"
resultMap=
"tSpecialDeducationSumMap"
>
<select
id=
"getTSpecialDeducationSumPage"
resultMap=
"tSpecialDeducationSumMap"
>
SELECT
SELECT
<include
refid=
"Base_Column_List"
/>
<include
refid=
"Base_Column_List"
/>
FROM t_special_deducation_sum
a
FROM t_special_deducation_sum
<where>
<where>
1=1
1=1
<include
refid=
"tSpecialDeducationSum_where"
/>
<include
refid=
"tSpecialDeducationSum_where"
/>
</where>
</where>
</select>
</select>
<select
id=
"getTSpecialDeducationSumList"
resultMap=
"tSpecialDeducationSumMap"
>
SELECT
<include
refid=
"Base_Column_List"
/>
FROM t_special_deducation_sum
<where>
1=1
<include
refid=
"tSpecialDeducationSum_where"
/>
</where>
order by CREATE_TIME desc
</select>
<select
id=
"getTSpecialDeducationSum"
resultMap=
"tSpecialDeducationSumMap"
>
SELECT
<include
refid=
"Base_Column_List"
/>
FROM t_special_deducation_sum
<where>
1=1
<if
test=
"yearMonth != null and yearMonth.trim() != ''"
>
AND CREATE_MONTH = #{yearMonth}
</if>
<if
test=
"idNumber != null and idNumber.trim() != ''"
>
AND ID_NUMBER = #{idNumber}
</if>
<if
test=
"invoiceTitle != null and invoiceTitle.trim() != ''"
>
AND DECLARE_TITLE = #{invoiceTitle}
</if>
</where>
limit 1
</select>
<!-- 工资查询所需的全部list,组装Map来使用 -->
<select
id=
"getListByIdCardList"
resultMap=
"tSpecialDeducationSumMap"
>
SELECT
<include
refid=
"Base_Column_List"
/>
FROM t_special_deducation_sum
<where>
1=1
<if
test=
"yearMonth != null and yearMonth.trim() != ''"
>
AND CREATE_MONTH = #{yearMonth}
</if>
<if
test=
"idCardList != null"
>
and ID_NUMBER in
<foreach
item=
"item"
index=
"index"
collection=
"idCardList"
open=
"("
separator=
","
close=
")"
>
#{item}
</foreach>
</if>
</where>
</select>
<!--删除专项扣除-->
<delete
id=
"deleteByUnitAndMonth"
>
DELETE FROM t_special_deducation_sum WHERE CREATE_MONTH = #{yearMonth} AND DECLARE_TITLE = #{invoiceTitle}
</delete>
</mapper>
</mapper>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment