package com.zy.acs.common.domain.protocol; 
 | 
  
 | 
import lombok.Data; 
 | 
  
 | 
import java.io.Serializable; 
 | 
  
 | 
/** 
 | 
 * Created by vincent on 2023/3/15 
 | 
 */ 
 | 
@Data 
 | 
public class AGV_70_UP implements IMessageBody, Serializable { 
 | 
  
 | 
    private static final long serialVersionUID = -5588066188890649095L; 
 | 
  
 | 
    @Override 
 | 
    public byte[] writeToBytes() { 
 | 
        return new byte[0]; 
 | 
    } 
 | 
  
 | 
    @Override 
 | 
    public void readFromBytes(byte[] bytes) { 
 | 
  
 | 
  
 | 
    } 
 | 
  
 | 
    private String codeBy1F; 
 | 
  
 | 
    private String codeBy2F; 
 | 
  
 | 
    private String codeBy3F; 
 | 
  
 | 
    private String codeBy4F; 
 | 
  
 | 
    private String codeBy5F; 
 | 
  
 | 
    private String codeBy6F; 
 | 
  
 | 
    private String codeBy7F; 
 | 
  
 | 
    private String codeBy8F; 
 | 
  
 | 
    private String codeBy9F; 
 | 
  
 | 
    private String codeBy10F; 
 | 
  
 | 
} 
 |