|
@ -4,7 +4,13 @@ import lombok.Data; |
|
|
|
|
|
|
|
|
@Data |
|
|
@Data |
|
|
public class SprayTaskPointCollectorPushBO { |
|
|
public class SprayTaskPointCollectorPushBO { |
|
|
|
|
|
/** |
|
|
|
|
|
* 当前是第几次喷涂 |
|
|
|
|
|
*/ |
|
|
Integer index; |
|
|
Integer index; |
|
|
|
|
|
/** |
|
|
|
|
|
* 点位坐标 |
|
|
|
|
|
*/ |
|
|
Point2D point; |
|
|
Point2D point; |
|
|
|
|
|
|
|
|
public SprayTaskPointCollectorPushBO(Integer index,Point2D point) { |
|
|
public SprayTaskPointCollectorPushBO(Integer index,Point2D point) { |
|
|