| | |
| | | import com.dy.pmsGlobal.pojoPlt.PltProductParams; |
| | | import com.dy.pmsGlobal.pojoPlt.PltProductQualityInspectionItems; |
| | | import com.dy.pmsGlobal.pojoPlt.PltProductTestInspectionItems; |
| | | import com.dy.pmsGlobal.pojoPr.PrAssemblyPlan; |
| | | import com.dy.pmsGlobal.pojoPr.PrProductionNode; |
| | | import com.dy.pmsGlobal.pojoSta.StaDeviceLife; |
| | | import com.dy.pmsGlobal.pojoSta.StaDeviceProductionLog; |
| | |
| | | |
| | | /** |
| | | * 测试或品检都调用这个接口 |
| | | * |
| | | * @param vo |
| | | * @return |
| | | */ |
| | |
| | | List<StaDeviceProductionLog> result = sv.queryLogByDeviceNo(deviceNo); |
| | | return BaseResponseUtils.buildSuccess(result); |
| | | } |
| | | @GetMapping(path = "queryPlanByDeviceNo") |
| | | public BaseResponse<PrAssemblyPlan> queryPlanByDeviceNo(String deviceNo) { |
| | | log.info("AssemblyStepCtrl.queryLogByDeviceNo():" + deviceNo); |
| | | PrAssemblyPlan result = sv.queryPlanByDeviceNo(deviceNo); |
| | | return BaseResponseUtils.buildSuccess(result); |
| | | } |
| | | |
| | | } |