|
@@ -47,6 +47,16 @@ public class TblWeightinfoController extends BaseController
|
|
|
}
|
|
|
|
|
|
/**
|
|
|
+ * 根据车牌号查询称重单列表-不分页
|
|
|
+ */
|
|
|
+ @GetMapping(value = "getWeightInfo/{serialNo}")
|
|
|
+ public AjaxResult getWeightInfo(TblWeightinfo tblWeightinfo)
|
|
|
+ {
|
|
|
+ List<TblWeightinfo> list = tblWeightinfoService.selectTblWeightinfoByPlateNo(tblWeightinfo);
|
|
|
+ return AjaxResult.success(list);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
* 导出称重单列表
|
|
|
*/
|
|
|
@PreAuthorize("@ss.hasPermi('weighbridge:weightInfo:export')")
|