Blame view

DepartmentDictMapper.java 428 Bytes
涂亚平 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
package com.meishu.mapper;

import com.meishu.model.AdministerDO;
import com.meishu.model.DepartmentDictDO;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.springframework.stereotype.Repository;

import java.util.List;

/**
 * <p>
 * 部门字典表 Mapper 接口
 * </p>
 *
 * @author Tuyp
 * @since 2021-04-25
 */
 @Repository
public interface DepartmentDictMapper extends BaseMapper<DepartmentDictDO> {

}