package com.fgkj.dto;
|
|
import org.apache.ibatis.type.Alias;
|
|
import java.io.Serializable;
|
import java.util.Date;
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
@Alias("Avoid_plan")
|
public class Avoid_plan implements Serializable{
|
private int num;
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
|
private Date start_time;
|
private int start_month;
|
private int start_day;
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss",timezone = "Asia/Shanghai")
|
private Date stop_time;
|
private int stop_month;
|
private int stop_day;
|
private String note;
|
public int getNum() {
|
return num;
|
}
|
public void setNum(int num) {
|
this.num = num;
|
}
|
public Date getStart_time() {
|
return start_time;
|
}
|
public void setStart_time(Date start_time) {
|
this.start_time = start_time;
|
}
|
public int getStart_month() {
|
return start_month;
|
}
|
public void setStart_month(int start_month) {
|
this.start_month = start_month;
|
}
|
public int getStart_day() {
|
return start_day;
|
}
|
public void setStart_day(int start_day) {
|
this.start_day = start_day;
|
}
|
public Date getStop_time() {
|
return stop_time;
|
}
|
public void setStop_time(Date stop_time) {
|
this.stop_time = stop_time;
|
}
|
public int getStop_month() {
|
return stop_month;
|
}
|
public void setStop_month(int stop_month) {
|
this.stop_month = stop_month;
|
}
|
public int getStop_day() {
|
return stop_day;
|
}
|
public void setStop_day(int stop_day) {
|
this.stop_day = stop_day;
|
}
|
public String getNote() {
|
return note;
|
}
|
public void setNote(String note) {
|
this.note = note;
|
}
|
@Override
|
public String toString() {
|
return "Avoid_plan [num=" + num + ", start_time=" + start_time
|
+ ", start_month=" + start_month + ", start_day=" + start_day
|
+ ", stop_time=" + stop_time + ", stop_month=" + stop_month
|
+ ", stop_day=" + stop_day + ", note=" + note + "]";
|
}
|
|
|
|
}
|