package com.ld.igds.io.request;
|
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
|
/**
|
* 虫害检测
|
*/
|
@Data
|
@EqualsAndHashCode(callSuper = false)
|
public class CheckPestRequest extends BaseRequest {
|
|
private Integer pestStart;// 虫害采集点开始
|
|
private Integer pestEnd;// 虫害采集点截至
|
|
private String checkPoints;// 指定采集点,用逗号隔开的字符串
|
|
}
|