Files
klp-oa/klp-wms/src/main/resources/mapper/klp/WmsEmployeeInfoMapper.xml
Joshi 18bffc4325 feat(employee): 添加员工社保类型字段
- 在 WmsEmployeeInfo 实体类中新增 socialInsuranceType 字段
- 在 WmsEmployeeInfoBo 业务对象中新增 socialInsuranceType 字段
- 在 WmsEmployeeInfoVo 视图对象中新增 socialInsuranceType 字段
- 在 MyBatis 映射文件中添加社保类型字段映射配置
- 在查询条件构建器中添加社保类型筛选条件
2026-03-11 11:15:37 +08:00

34 lines
1.6 KiB
XML

<?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="com.klp.mapper.WmsEmployeeInfoMapper">
<resultMap type="com.klp.domain.WmsEmployeeInfo" id="WmsEmployeeInfoResult">
<result property="infoId" column="info_id"/>
<result property="serialNumber" column="serial_number"/>
<result property="dept" column="dept"/>
<result property="jobType" column="job_type"/>
<result property="name" column="name"/>
<result property="idCard" column="id_card"/>
<result property="age" column="age"/>
<result property="gender" column="gender"/>
<result property="education" column="education"/>
<result property="homeAddress" column="home_address"/>
<result property="phone" column="phone"/>
<result property="entryTime" column="entry_time"/>
<result property="emergencyContact" column="emergency_contact"/>
<result property="relationship" column="relationship"/>
<result property="emergencyContactPhone" column="emergency_contact_phone"/>
<result property="socialInsuranceType" column="social_insurance_type"/>
<result property="createBy" column="create_by"/>
<result property="createTime" column="create_time"/>
<result property="updateBy" column="update_by"/>
<result property="updateTime" column="update_time"/>
<result property="delFlag" column="del_flag"/>
<result property="remark" column="remark"/>
</resultMap>
</mapper>