package com.gkhy.safePlatform.account.model.query;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
|
public class GroupStrategyScheduleQuery implements Serializable {
|
|
private static final long serialVersionUID = 2815852589673284824L;
|
|
private Long groupStrategyId;
|
|
@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 Byte type;
|
|
public Long getGroupStrategyId() {
|
return groupStrategyId;
|
}
|
|
public void setGroupStrategyId(Long groupStrategyId) {
|
this.groupStrategyId = groupStrategyId;
|
}
|
|
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;
|
}
|
}
|