| | |
| | | import com.ruoyi.business.dto.OfficialInventoryDto; |
| | | import com.ruoyi.business.entity.OfficialInventory; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.ruoyi.business.vo.OfficialInventoryVo; |
| | | |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * <p> |
| | |
| | | public interface OfficialInventoryService extends IService<OfficialInventory> { |
| | | |
| | | IPage<OfficialInventoryDto> selectOfficialInventoryList(Page page, OfficialInventoryDto officialInventoryDto); |
| | | |
| | | int mergeAll(OfficialInventoryDto officialInventoryDto); |
| | | |
| | | int editOfficial(OfficialInventoryDto officialInventoryDto); |
| | | |
| | | List<OfficialInventoryVo> selectOfficialList(OfficialInventoryVo officialInventoryVo); |
| | | |
| | | List<OfficialInventory> selectOfficialAll(); |
| | | } |