This commit is contained in:
esacpe
2024-07-17 21:00:42 +08:00
commit b80c560e87
1931 changed files with 163526 additions and 0 deletions

View File

@ -0,0 +1,14 @@
package com.mosty.base.mapper;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.mosty.common.core.business.entity.SysDept;
import org.apache.ibatis.annotations.Mapper;
/**
* @author dw
* @since 2022/8/1
**/
@Mapper
public interface DeptMapper extends BaseMapper<SysDept> {
}