IndustryOutputMapper.java 451 B

12345678910111213141516171819202122
  1. package com.huimv.cattle.mapper;
  2. import com.huimv.cattle.pojo.IndustryOutput;
  3. import com.baomidou.mybatisplus.core.mapper.BaseMapper;
  4. import org.apache.ibatis.annotations.Param;
  5. import org.springframework.stereotype.Repository;
  6. import java.math.BigDecimal;
  7. /**
  8. * <p>
  9. * Mapper 接口
  10. * </p>
  11. *
  12. * @author zn
  13. * @since 2022-12-15
  14. */
  15. @Repository
  16. public interface IndustryOutputMapper extends BaseMapper<IndustryOutput> {
  17. void deleteAll();
  18. }