package org.springblade.mdm.flow.vo; import io.swagger.v3.oas.annotations.media.Schema; import lombok.Getter; import lombok.Setter; import org.springblade.core.mp.support.Query; import org.springblade.core.tool.utils.DateUtil; import org.springframework.format.annotation.DateTimeFormat; import java.time.LocalDate; import java.util.Date; /** * 分页拆线呢 */ @Schema(description = "机床查询对象") @Setter @Getter public class ProgramOnMachineQueryVO extends Query { @Schema(description = "零组件号") private String drawingNo; @DateTimeFormat(pattern = DateUtil.PATTERN_DATE) @Schema(description = "审批完成时间开始") private LocalDate endTimeBegin; @DateTimeFormat(pattern = DateUtil.PATTERN_DATE) @Schema(description = "审批完成时间截止") private LocalDate endTimeEnd; }