package com.dy.pipIrrGlobal.voIr;
|
|
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
|
import lombok.Data;
|
|
/**
|
* @author ZhuBaoMin
|
* @date 2025-03-31 17:10
|
* @LastEditTime 2025-03-31 17:10
|
* @Description 轮灌组详情视图对象
|
*/
|
|
@Data
|
@JsonPropertyOrder({"groupCode", "defaultDuration", "intakes"})
|
public class VoGroupDetail {
|
public static final long serialVersionUID = 202503311711001L;
|
|
/**
|
* 轮灌组编码
|
*/
|
private String groupCode;
|
|
/**
|
* 默认灌溉时长
|
*/
|
private Integer defaultDuration;
|
|
/**
|
* 取水口列表
|
*/
|
private String intakes;
|
}
|