feat(employee): 添加员工社保类型字段

- 在 WmsEmployeeInfo 实体类中新增 socialInsuranceType 字段
- 在 WmsEmployeeInfoBo 业务对象中新增 socialInsuranceType 字段
- 在 WmsEmployeeInfoVo 视图对象中新增 socialInsuranceType 字段
- 在 MyBatis 映射文件中添加社保类型字段映射配置
- 在查询条件构建器中添加社保类型筛选条件
This commit is contained in:
2026-03-11 11:15:37 +08:00
parent 12207aa421
commit 18bffc4325
5 changed files with 16 additions and 0 deletions

View File

@@ -20,6 +20,7 @@
<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"/>