| 123456789101112131415161718 |
- package com.xjrsoft.module.print.mapper;
- import com.github.yulichang.base.MPJBaseMapper;
- import com.xjrsoft.module.print.entity.PrintSchema;
- import org.apache.ibatis.annotations.Mapper;
- /**
- * <p>
- * 打印模板 Mapper 接口
- * </p>
- *
- * @author tzx
- * @since 2023-05-19
- */
- @Mapper
- public interface PrintSchemaMapper extends MPJBaseMapper<PrintSchema> {
- }
|