| 1234567891011121314151617 |
- package com.xjrsoft.module.room.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.room.entity.WfRoomApplicant;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * @title: 寝室申请
- * @Author dzx
- * @Date: 2024-01-02
- * @Version 1.0
- */
- @Mapper
- public interface WfRoomApplicantMapper extends MPJBaseMapper<WfRoomApplicant> {
- }
|