| | |
| | | public interface RawInspectService extends IService<RawInspect> { |
| | | |
| | | /** |
| | | *新增原材料检验单-->根据原材料编码得到ifs中的报检数据 |
| | | * @param code |
| | | * @return |
| | | */ |
| | | RawInspectVo chooseIFS(String code); |
| | | |
| | | /** |
| | | * 新增原材料检验单 |
| | | * @param userId |
| | | * @param userName |
| | | * @param rawInspectVo |
| | | */ |
| | | String addRawInspects(String userId, RawInspectVo rawInspectVo) throws Exception; |
| | | String addRawInspects(String userName, RawInspectVo rawInspectVo); |
| | | |
| | | /** |
| | | * 分页查询原材料检验单列表 |
| | |
| | | * 更新检验状态 |
| | | * @param id |
| | | */ |
| | | String updateRawInspectsById(Integer id); |
| | | String updateRawInspectsById(Integer id,Integer number); |
| | | |
| | | |
| | | } |