修复mybatis
This commit is contained in:
parent
bbcaa1a1e8
commit
95c8ee6a4f
|
|
@ -86,8 +86,8 @@ public class SalaryStatisticsReportBO {
|
|||
* @param po
|
||||
*/
|
||||
public static void poToQueryParam(SalaryStatisticsReportDataQueryParam param, SalaryStatisticsReportPO po) {
|
||||
param.setSalaryStartMonth(ReportTimeUtil.getFormatYearMonth(po.getSalaryStartMonth()));
|
||||
param.setSalaryEndMonth(ReportTimeUtil.getFormatYearMonth(po.getSalaryEndMonth()));
|
||||
// param.setSalaryStartMonth(ReportTimeUtil.getFormatYearMonth(po.getSalaryStartMonth()));
|
||||
// param.setSalaryEndMonth(ReportTimeUtil.getFormatYearMonth(po.getSalaryEndMonth()));
|
||||
|
||||
// todo 待优化
|
||||
// String key = "id";
|
||||
|
|
@ -822,8 +822,6 @@ public class SalaryStatisticsReportBO {
|
|||
*
|
||||
* @param dimensionName
|
||||
* @param salaryStatisticsItemList
|
||||
* @param employeeId
|
||||
* @param tenantKey
|
||||
* @return
|
||||
*/
|
||||
public static List<WeaTableColumn> buildReportColumns(String dimensionName, List<SalaryStatisticsItemPO> salaryStatisticsItemList) {
|
||||
|
|
|
|||
|
|
@ -6,7 +6,6 @@ import lombok.Data;
|
|||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.time.LocalDate;
|
||||
import java.util.Collection;
|
||||
import java.util.Date;
|
||||
|
||||
|
|
@ -40,10 +39,10 @@ public class SalaryStatisticsReportPO implements Serializable {
|
|||
private String dimension;
|
||||
|
||||
//薪资所属月-起始")
|
||||
private LocalDate salaryStartMonth;
|
||||
private Date salaryStartMonth;
|
||||
|
||||
//薪资所属月-截止")
|
||||
private LocalDate salaryEndMonth;
|
||||
private Date salaryEndMonth;
|
||||
|
||||
//个税扣缴义务人配置")
|
||||
private String taxAgentSetting;
|
||||
|
|
|
|||
Loading…
Reference in New Issue