old mode 100644
new mode 100755
| | |
| | | package com.java110.common.bmo.machine; |
| | | |
| | | import com.alibaba.fastjson.JSONObject; |
| | | import com.java110.dto.attrValue.AttrValueDto; |
| | | import org.springframework.http.ResponseEntity; |
| | | |
| | | public interface IMachineOpenDoorBMO { |
| | |
| | | * @return |
| | | */ |
| | | ResponseEntity<String> restartMachine(JSONObject reqJson); |
| | | |
| | | /** |
| | | * 开门接口类 |
| | | * |
| | | * @param reqJson 请求报文信息 |
| | | * @return |
| | | */ |
| | | ResponseEntity<String> resendIot(JSONObject reqJson); |
| | | |
| | | /** |
| | | * 获取二维码 |
| | | * @param reqJson |
| | | * @return |
| | | */ |
| | | ResponseEntity<String> getQRcode(JSONObject reqJson); |
| | | |
| | | /** |
| | | * 手工进出场 |
| | | * @param reqJson |
| | | * @return |
| | | */ |
| | | ResponseEntity<String> customCarInOut(JSONObject reqJson); |
| | | } |