feat(employee): 添加员工转正状态管理功能
- 在WmsEmployeeInfo实体类中新增isRegular和regularTime字段 - 在WmsEmployeeInfoBo业务对象中添加转正相关属性定义 - 配置MyBatis映射文件中的转正状态字段映射关系 - 实现员工服务层中的转正状态查询条件过滤逻辑 - 在WmsEmployeeInfoVo视图对象中添加转正状态返回字段
This commit is contained in:
@@ -28,6 +28,8 @@
|
||||
<result property="delFlag" column="del_flag"/>
|
||||
<result property="remark" column="remark"/>
|
||||
<result property="isLeave" column="is_leave"/>
|
||||
<result property="isRegular" column="is_regular"/>
|
||||
<result property="regularTime" column="regular_time"/>
|
||||
</resultMap>
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user