fix: 问题修复
1.备注板块打开时提示绑定错误
2.合同板块不能保存问题
| | |
| | | @FieldInfo(name = "contractPeriod", type = "tinyint", explain = "合同期限(年)") |
| | | @TableField("contractPeriod") |
| | | @ExcelField(value = "合同期限(年)") |
| | | private Float contractPeriod = Float.valueOf(0); |
| | | private String contractPeriod; |
| | | |
| | | @FieldInfo(name = "contractStatusName", type = "varchar", explain = "合同状态") |
| | | @TableField(exist = false) |
| New file |
| | |
| | | <?xml version="1.0" encoding="UTF-8"?> |
| | | <!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd"> |
| | | <mapper namespace="cc.mrbird.febs.server.hr.mapper.EmpRemarkInfoMapper"> |
| | | <select id="selectPageVo" resultType="cc.mrbird.febs.server.hr.entity.EmpRemarkInfo"> |
| | | select a.*,b.allDeptName from t_emp_remarkinfo a |
| | | inner join t_emp_baseinfo b on a.empId = b.empId |
| | | inner join t_dept c on b.deptId = c.DEPT_ID |
| | | ${ew.customSqlSegment} |
| | | </select> |
| | | </mapper> |
| | |
| | | } |
| | | |
| | | if (StringUtils.isNotBlank(list.get(8).toString())) { |
| | | contractInfo.setContractPeriod(Float.valueOf(list.get(8).toString())); |
| | | contractInfo.setContractPeriod(list.get(8).toString()); |
| | | } |
| | | //合同 |
| | | DicItem dicItem = dicItems.parallelStream().filter(j -> StrUtil.equalsIgnoreCase(j.getDicCode(), "contractStatus") && StrUtil.equals(j.getDicItemName(), list.get(9).toString())).findFirst().orElse(null); |
| | |
| | | import org.springframework.stereotype.Component; |
| | | |
| | | import javax.annotation.Resource; |
| | | import javax.swing.*; |
| | | |
| | | /** |
| | | * name: ScheduledTask |