package cn.lihu.jh.module.ecg.controller.admin.queuesequence.vo; 
 | 
  
 | 
import lombok.*; 
 | 
import java.util.*; 
 | 
import io.swagger.v3.oas.annotations.media.Schema; 
 | 
import cn.lihu.jh.framework.common.pojo.PageParam; 
 | 
import org.springframework.format.annotation.DateTimeFormat; 
 | 
import java.time.LocalDateTime; 
 | 
  
 | 
import static cn.lihu.jh.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND; 
 | 
  
 | 
@Schema(description = "管理后台 - 当天序号分页 Request VO") 
 | 
@Data 
 | 
@EqualsAndHashCode(callSuper = true) 
 | 
@ToString(callSuper = true) 
 | 
public class QueueSequencePageReqVO extends PageParam { 
 | 
  
 | 
    @Schema(description = "检查类型", example = "2") 
 | 
    private Integer checkType; 
 | 
  
 | 
    @Schema(description = "时段") 
 | 
    private Integer timeSlot; 
 | 
  
 | 
    @Schema(description = "该时段 普通患者 序号") 
 | 
    private Integer queueNo; 
 | 
  
 | 
    @Schema(description = "该时段 vip 序号") 
 | 
    private Integer queueVipNo; 
 | 
  
 | 
    @Schema(description = "该时段 普通患者 序号满") 
 | 
    private Integer queueFull; 
 | 
  
 | 
    @Schema(description = "该时段 vip 序号满") 
 | 
    private Integer queueVipFull; 
 | 
  
 | 
    @Schema(description = "创建时间") 
 | 
    @DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND) 
 | 
    private LocalDateTime[] createTime; 
 | 
  
 | 
} 
 |