package com.gkhy.safePlatform.account.model.query; import com.fasterxml.jackson.annotation.JsonFormat; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; public class UserScheduleQuery implements Serializable { private static final long serialVersionUID = 6910989036163163173L; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8") private Date startTime; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone="GMT+8") private Date endTime; private Long uid; private Byte type; public Date getStartTime() { return startTime; } public void setStartTime(Date startTime) { this.startTime = startTime; } public Date getEndTime() { return endTime; } public void setEndTime(Date endTime) { this.endTime = endTime; } public Long getUid() { return uid; } public void setUid(Long uid) { this.uid = uid; } public Byte getType() { return type; } public void setType(Byte type) { this.type = type; } }