| | |
| | | package org.jeecg.modules.cms.service; |
| | | |
| | | import com.baomidou.mybatisplus.core.metadata.IPage; |
| | | import org.jeecg.common.api.vo.Result; |
| | | import org.jeecg.modules.cms.entity.CuttingReceive; |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | |
| | |
| | | public interface ICuttingReceiveService extends IService<CuttingReceive> { |
| | | |
| | | IPage<Map<String, Object>> getInventoryToolList(Integer pageNo, Integer pageSize, Map<String, Object> params); |
| | | Result<?> submit(String orderId); |
| | | |
| | | Result<?> handleBack(String orderId); |
| | | } |