package com.fzzy.igds.quantity.dto;
|
|
import lombok.Data;
|
|
import java.io.Serializable;
|
|
/**
|
* @Description 返回信息封装
|
* @Author CZT
|
* @Date 2026/01/08 16:36
|
*/
|
@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;// 坐标数据
|
}
|