AlgorithmMapper.java 280 B

12345678910111213141516
  1. package com.xy.mapper;
  2. import com.xy.entity.Algorithm;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. /**
  5. * <p>
  6. * 算法平台 Mapper 接口
  7. * </p>
  8. *
  9. * @author hechunping
  10. * @since 2023-01-12
  11. */
  12. public interface AlgorithmMapper extends BaseMapper<Algorithm> {
  13. }