1234567891011121314151617181920212223 |
- /*
- * 爱组搭 http://aizuda.com 低代码组件化开发平台
- * ------------------------------------------
- * 受知识产权保护,请勿删除版权申明
- */
- package com.aizuda.boot.system.mapper;
- import com.aizuda.service.mapper.CrudMapper;
- import com.aizuda.boot.system.entity.SysPost;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * 岗位 Mapper 接口
- * </p>
- *
- * @author 青苗
- * @since 2022-02-18
- */
- @Mapper
- public interface SysPostMapper extends CrudMapper<SysPost> {
- }
|