| | |
| | | agvLocMast.setLocSts(locSts); |
| | | agvLocMast.setBarcode(barcode); |
| | | agvLocMast.setLocType2(containerType); |
| | | agvLocMast.setModiTime(new Date()); |
| | | this.updateById(agvLocMast); |
| | | } |
| | | public void updateLocStsByLocNo(String locNo, String locSts, String barcode,Short containerType,String locType,Short locType3) { |
| | | AgvLocMast agvLocMast = this.selectById(locNo); |
| | | agvLocMast.setLocSts(locSts); |
| | | agvLocMast.setBarcode(barcode); |
| | | agvLocMast.setLocType2(containerType); |
| | | agvLocMast.setLocType(locType); |
| | | agvLocMast.setLocType3(locType3); |
| | | agvLocMast.setModiTime(new Date()); |
| | | this.updateById(agvLocMast); |
| | | } |
| | | |