- package me.zhengjie.application.bank.service;
- import me.zhengjie.dao.mybatis.entity.DictionaryEntity;
- import com.baomidou.mybatisplus.extension.service.IService;
- /**
- * <p>
- * 字典表 服务类
- * </p>
- *
- * @author humuyu
- * @since 2022-03-10
- */
- public interface DictionaryService extends IService<DictionaryEntity> {
- }
|