部门人员代码结构

This commit is contained in:
2026-04-26 10:35:45 +08:00
parent 34ae138199
commit b9e00e6846
5 changed files with 331 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
package com.rj.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.rj.entity.LbDepartmentUser;
import org.apache.ibatis.annotations.Mapper;
@Mapper
public interface LbDepartmentUserMapper extends BaseMapper<LbDepartmentUser> {
}