SysDictMapper.java 313 B

12345678910111213
  1. package com.punchsettle.server.atomic.mapper;
  2. import com.punchsettle.server.atomic.entity.SysDict;
  3. import tk.mybatis.mapper.common.BaseMapper;
  4. /**
  5. * @author tyuio
  6. * @version 1.0.0
  7. * @description 系统字典 Mapper
  8. * @date 2024/12/12 19:06
  9. */
  10. public interface SysDictMapper extends BaseMapper<SysDict> {
  11. }