package com.fgkj.dto; import java.io.Serializable; import java.util.Date; import com.fgkj.dao.CallBack; public class Thread_util implements Serializable{ private int num; private int thread_id; private String thread_name; private Date thread_starttime; private int thread_en; private String note; public int getNum() { return num; } public void setNum(int num) { this.num = num; } public int getThread_id() { return thread_id; } public void setThread_id(int thread_id) { this.thread_id = thread_id; } public String getThread_name() { return thread_name; } public void setThread_name(String thread_name) { this.thread_name = thread_name; } public Date getThread_starttime() { return thread_starttime; } public void setThread_starttime(Date thread_starttime) { this.thread_starttime = thread_starttime; } public int getThread_en() { return thread_en; } public void setThread_en(int thread_en) { this.thread_en = thread_en; } public String getNote() { return note; } public void setNote(String note) { this.note = note; } @Override public String toString() { return "Thread_util [num=" + num + ", thread_id=" + thread_id + ", thread_name=" + thread_name + ", thread_starttime=" + thread_starttime + ", thread_en=" + thread_en + ", note=" + note + "]"; } }