| | |
| | | import com.baomidou.mybatisplus.extension.plugins.pagination.Page; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.require.pojo.FeStandardSubstance; |
| | | import org.springframework.web.multipart.MultipartFile; |
| | | |
| | | import javax.servlet.http.HttpServletResponse; |
| | | |
| | | /** |
| | | * <p> |
| | | * 标准物质清单 服务类 |
| | | * </p> |
| | | * |
| | | * @author 芯导软件(江苏)有限公司 |
| | | * @author |
| | | * @since 2024-11-13 03:58:59 |
| | | */ |
| | | public interface FeStandardSubstanceService extends IService<FeStandardSubstance> { |
| | | |
| | | IPage<FeStandardSubstance> page(Page page, FeStandardSubstance feStandardSubstance); |
| | | |
| | | void downloadImportTemplate(HttpServletResponse response); |
| | | |
| | | int importStandardSubstance(MultipartFile file); |
| | | } |