| | |
| | | |
| | | import com.yuanchu.limslaboratory.pojo.Material; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.limslaboratory.pojo.dto.UpdateMaterialInformation; |
| | | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | |
| | | * @since 2023-07-17 |
| | | */ |
| | | public interface MaterialService extends IService<Material> { |
| | | |
| | | /** |
| | | * 查询物料信息 |
| | | * @param pageSize |
| | | * @param countSize |
| | | * @return |
| | | */ |
| | | List<Material> selectMaterialLimit(int pageSize,int countSize); |
| | | |
| | | Integer addMaterialInformation(Material material); |
| | |
| | | */ |
| | | List<String> specificationsIdDeleteMaterial(List<Integer> deleteSpecificationsId); |
| | | |
| | | /** |
| | | * 根据物料id查询物流 |
| | | * @param materialId |
| | | * @return |
| | | */ |
| | | Map selectMaterialById(String materialId); |
| | | |
| | | /** |
| | |
| | | * @param materialId |
| | | * @return |
| | | */ |
| | | Material ListIdMaterialInformation(String materialId) throws Exception; |
| | | Material ListIdMaterialInformation(String materialId); |
| | | } |