12345678910111213141516171819202122 |
- package com.huimv.cattle.mapper;
- import com.huimv.cattle.pojo.IndustryOutput;
- import com.baomidou.mybatisplus.core.mapper.BaseMapper;
- import org.apache.ibatis.annotations.Param;
- import org.springframework.stereotype.Repository;
- import java.math.BigDecimal;
- /**
- * <p>
- * Mapper 接口
- * </p>
- *
- * @author zn
- * @since 2022-12-15
- */
- @Repository
- public interface IndustryOutputMapper extends BaseMapper<IndustryOutput> {
- void deleteAll();
- }
|