copy from service-common/src/main/java/com/java110/common/bmo/machineRecord/ISaveMachineRecordBMO.java
copy to service-common/src/main/java/com/java110/common/bmo/machine/IUpdateMachineTransactionStateBMO.java
| File was copied from service-common/src/main/java/com/java110/common/bmo/machineRecord/ISaveMachineRecordBMO.java |
| | |
| | | * See the License for the specific language governing permissions and |
| | | * limitations under the License. |
| | | */ |
| | | package com.java110.common.bmo.machineRecord; |
| | | package com.java110.common.bmo.machine; |
| | | |
| | | import com.java110.dto.machine.MachineRecordDto; |
| | | import com.java110.po.machine.MachineRecordPo; |
| | | import com.java110.dto.machine.MachineTranslateDto; |
| | | import org.springframework.http.ResponseEntity; |
| | | |
| | | /** |
| | | * 开门记录 存储 |
| | | * 修改状态 |
| | | * <p> |
| | | * add by wuxw 2020-12-27 |
| | | * <p> |
| | | * 协议:https://gitee.com/java110/MicroCommunityThings/blob/master/back/docs/api.md |
| | | */ |
| | | public interface ISaveMachineRecordBMO { |
| | | public interface IUpdateMachineTransactionStateBMO { |
| | | |
| | | /** |
| | | * 保存开门记录 |
| | | * 修改指令执行情况 |
| | | * |
| | | * @param machineRecordDto |
| | | * @param machineTranslateDto |
| | | * @return |
| | | */ |
| | | ResponseEntity<String> saveRecord(MachineRecordDto machineRecordDto); |
| | | ResponseEntity<String> update(MachineTranslateDto machineTranslateDto); |
| | | } |