| | |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import org.springblade.modules.yw.entity.SuppliesEntity; |
| | | import org.springblade.modules.yw.excel.SuppliesExcel; |
| | | import org.springblade.modules.yw.vo.SuppliesVO; |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * 物资库表 服务类 |
| | |
| | | */ |
| | | IPage<SuppliesVO> selectSuppliesPage(IPage<SuppliesVO> page, SuppliesVO supplies); |
| | | |
| | | /** |
| | | * 导入物资仓库信息 |
| | | * @param data |
| | | * @param isCovered |
| | | * @return |
| | | */ |
| | | String importSupplies(List<SuppliesExcel> data, boolean isCovered); |
| | | } |