package com.gkhy.safePlatform.account.model.query.db; import org.springframework.format.annotation.DateTimeFormat; import java.io.Serializable; import java.util.Date; public class GroupScheduleDBQuery implements Serializable { private static final long serialVersionUID = 5985321705008648266L; private Long groupId; private Date startTime; private Date endTime; private Byte type; public Long getGroupId() { return groupId; } public void setGroupId(Long groupId) { this.groupId = groupId; } 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 Byte getType() { return type; } public void setType(Byte type) { this.type = type; } }