PrintSchemaMapper.java 381 B

123456789101112131415161718
  1. package com.xjrsoft.module.print.mapper;
  2. import com.github.yulichang.base.MPJBaseMapper;
  3. import com.xjrsoft.module.print.entity.PrintSchema;
  4. import org.apache.ibatis.annotations.Mapper;
  5. /**
  6. * <p>
  7. * 打印模板 Mapper 接口
  8. * </p>
  9. *
  10. * @author tzx
  11. * @since 2023-05-19
  12. */
  13. @Mapper
  14. public interface PrintSchemaMapper extends MPJBaseMapper<PrintSchema> {
  15. }