| 123456789101112131415161718 |
- package com.xjrsoft.module.print.mapper;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import com.xjrsoft.module.print.entity.PrintConfig;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author tzx
- * @since 2023-05-23
- */
- @Mapper
- public interface PrintConfigMapper extends BaseMapper<PrintConfig> {
- }
|