| | |
| | | import com.baomidou.mybatisplus.extension.service.IService; |
| | | import com.yuanchu.mom.pojo.vo.RawInspectVo; |
| | | |
| | | import java.io.IOException; |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | |
| | | * @createDate 2023-07-31 14:43:15 |
| | | */ |
| | | public interface RawInspectService extends IService<RawInspect> { |
| | | |
| | | /** |
| | | *新增原材料检验单-->根据原材料编码得到ifs中的报检数据 |
| | | * @param code |
| | | * @return |
| | | */ |
| | | RawInspectVo chooseIFS(String code); |
| | | |
| | | /** |
| | | * 新增原材料检验单 |
| | |
| | | * 更新检验状态 |
| | | * @param id |
| | | */ |
| | | String updateRawInspectsById(Integer id); |
| | | String updateRawInspectsById(Integer id,Integer number); |
| | | |
| | | |
| | | } |