package cn.iocoder.yudao.module.mes.controller.admin.pro.maintenanceplan.vo;
|
|
import cn.iocoder.yudao.framework.common.pojo.PageParam;
|
import io.swagger.v3.oas.annotations.media.Schema;
|
import lombok.Data;
|
import lombok.EqualsAndHashCode;
|
import lombok.ToString;
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
import java.time.LocalDateTime;
|
|
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY;
|
|
@Schema(description = "管理后台 - MES 电力作业计划分页 Request VO")
|
@Data
|
@EqualsAndHashCode(callSuper = true)
|
@ToString(callSuper = true)
|
public class MesProMaintenancePlanPageReqVO extends PageParam {
|
|
@Schema(description = "计划编码", example = "MP20260818001")
|
private String code;
|
|
@Schema(description = "计划名称", example = "8月变电运维计划")
|
private String name;
|
|
@Schema(description = "计划类型(1=电网运行,2=发电,3=变电运维,4=线路检修)", example = "3")
|
private Integer planType;
|
|
@Schema(description = "状态(0=草稿,10=已下发,20=已完成,30=已取消)", example = "0")
|
private Integer status;
|
|
@Schema(description = "计划日期")
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY)
|
private LocalDateTime[] planDate;
|
|
}
|