/******************************************************************************* * Copyright (c) 2014 hangum. * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Lesser Public License v2.1 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/old-licenses/gpl-2.0.html * * Contributors: * hangum - initial API and implementation ******************************************************************************/ package com.hangum.tadpole.engine.query.dao.system; import java.sql.Timestamp; /** * schedule main * @author hangum * */ public class ScheduleMainDAO { int seq; int user_seq; int db_seq; String title; String description; String cron_exp; Timestamp create_time; String delyn; public ScheduleMainDAO() { } public int getSeq() { return seq; } public void setSeq(int seq) { this.seq = seq; } public int getUser_seq() { return user_seq; } public void setUser_seq(int user_seq) { this.user_seq = user_seq; } public int getDb_seq() { return db_seq; } public void setDb_seq(int db_seq) { this.db_seq = db_seq; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getDescription() { return description; } public void setDescription(String description) { this.description = description; } public String getCron_exp() { return cron_exp; } public void setCron_exp(String cron_exp) { this.cron_exp = cron_exp; } public Timestamp getCreate_time() { return create_time; } public void setCreate_time(Timestamp create_time) { this.create_time = create_time; } public String getDelyn() { return delyn; } public void setDelyn(String delyn) { this.delyn = delyn; } }