| package org.yzh.protocol.t1078; | 
|   | 
| import io.github.yezhihao.netmc.core.model.Response; | 
| import io.github.yezhihao.protostar.annotation.Field; | 
| import io.github.yezhihao.protostar.annotation.Message; | 
| import org.yzh.protocol.basics.JTMessage; | 
| import org.yzh.protocol.commons.JT1078; | 
|   | 
| /** | 
|  * @author yezhihao | 
|  * https://gitee.com/yezhihao/jt808-server | 
|  */ | 
| @Message(JT1078.文件上传控制) | 
| public class T9207 extends JTMessage implements Response { | 
|   | 
|     @Field(length = 2, desc = "应答流水号") | 
|     private int responseSerialNo; | 
|     @Field(length = 1, desc = "上传控制:0.暂停 1.继续 2.取消") | 
|     private int command; | 
|   | 
|     public int getResponseSerialNo() { | 
|         return responseSerialNo; | 
|     } | 
|   | 
|     public void setResponseSerialNo(int responseSerialNo) { | 
|         this.responseSerialNo = responseSerialNo; | 
|     } | 
|   | 
|     public int getCommand() { | 
|         return command; | 
|     } | 
|   | 
|     public void setCommand(int command) { | 
|         this.command = command; | 
|     } | 
| } |