| | |
| | | package com.ruoyi.management.service; |
| | | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.common.core.utils.page.PageDTO; |
| | | import com.ruoyi.management.domain.InventoriesSuppliesInfo; |
| | | import com.ruoyi.management.domain.dto.InventoriesSuppliesInfoDTO; |
| | | import com.ruoyi.management.domain.dto.InventoriesSuppliesInfoQuery; |
| | | import com.ruoyi.management.domain.vo.InventoriesSuppliesInfoVO; |
| | | import org.springframework.web.bind.annotation.RequestBody; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | */ |
| | | public interface InventoriesSuppliesInfoService extends IService<InventoriesSuppliesInfo> { |
| | | |
| | | PageDTO<InventoriesSuppliesInfoVO> inventoriesSuppliesInfoService(InventoriesSuppliesInfoQuery inventoriesSuppliesInfoQuery); |
| | | |
| | | void addInventoriesSuppliesInfo(InventoriesSuppliesInfoDTO inventoriesSuppliesInfoDTO); |
| | | |
| | | InventoriesSuppliesInfo getInventoriesSuppliesInfo(InventoriesSuppliesInfoDTO inventoriesSuppliesInfoDTO); |
| | | |
| | | void submitInventoriesSuppliesInfo(@RequestBody InventoriesSuppliesInfoDTO inventoriesSuppliesInfoDTO); |
| | | |
| | | void accomplishInventoriesSuppliesInfo(@RequestBody InventoriesSuppliesInfoDTO inventoriesSuppliesInfoDTO); |
| | | |
| | | } |