package com.ld.igds.io.fzzy.dto;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* 返回信息封装
|
*
|
* @author Andy
|
*/
|
@Data
|
public class Resp2005 implements Serializable {
|
|
/**
|
*
|
*/
|
private static final long serialVersionUID = 1L;
|
private int index;// 检测累积次数
|
private int curPackage;// 当前包数
|
private int sumPackeage;// 总包数
|
private int orien;// 安装朝向
|
private int dataCount;// 坐标个数
|
private String data;// 坐标数据
|
}
|