New file |
| | |
| | | package com.dy.pipIrrGlobal.pojoIr; |
| | | |
| | | import com.alibaba.fastjson2.annotation.JSONField; |
| | | import com.alibaba.fastjson2.writer.ObjectWriterImplToString; |
| | | import com.baomidou.mybatisplus.annotation.IdType; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.dy.common.po.BaseEntity; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import jakarta.validation.constraints.NotNull; |
| | | import lombok.*; |
| | | |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * @author ZhuBaoMin |
| | | * @date 2025-02-20 15:35 |
| | | * @LastEditTime 2025-02-20 15:35 |
| | | * @Description 灌溉次序实体类 |
| | | */ |
| | | |
| | | @TableName(value="ir_irrigate_schedule", autoResultMap = true) |
| | | @Data |
| | | @Builder |
| | | @ToString |
| | | @NoArgsConstructor |
| | | @AllArgsConstructor |
| | | public class IrIrrigateSchedule implements BaseEntity { |
| | | public static final long serialVersionUID = 202502201601001L; |
| | | |
| | | /** |
| | | * 主键 |
| | | */ |
| | | @JSONField(serializeUsing= ObjectWriterImplToString.class) |
| | | @TableId(type = IdType.INPUT) |
| | | private Long id; |
| | | |
| | | /** |
| | | * 灌溉计划ID |
| | | */ |
| | | //@NotNull(message = "灌溉计划ID不能为空") |
| | | //private Long planId; |
| | | |
| | | /** |
| | | * 轮灌组ID |
| | | */ |
| | | @NotNull(message = "轮灌组ID不能为空") |
| | | private Long groupId; |
| | | |
| | | /** |
| | | * 灌溉开始时间 |
| | | */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date startTime; |
| | | |
| | | |
| | | |
| | | /** |
| | | * 灌溉结束时间 |
| | | */ |
| | | //@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | //private Date stopTime; |
| | | |
| | | /** |
| | | * 灌溉时长;分钟 |
| | | */ |
| | | private Integer duration; |
| | | |
| | | /** |
| | | * 取水口ID列表 |
| | | */ |
| | | //private String intakeIds; |
| | | |
| | | /** |
| | | * 当前状态;1-正常,2-暂停,3-终止 |
| | | */ |
| | | private Byte currentState; |
| | | |
| | | } |