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 lombok.Data; import lombok.ToString; import lombok.experimental.Accessors; import org.yzh.protocol.basics.JTMessage; import org.yzh.protocol.commons.JT1078; /** * @author yezhihao * https://gitee.com/yezhihao/jt808-server */ @ToString @Data @Accessors(chain = true) @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; }