All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sagacity.sqltoy.translate.model.TimeSection Maven / Gradle / Ivy

There is a newer version: 5.6.31.jre8
Show newest version
/**
 * 
 */
package org.sagacity.sqltoy.translate.model;

import java.io.Serializable;

/**
 * @project sagacity-sqltoy
 * @description 时间区间模型
 * @author zhongxuchen
 * @version v1.0,Date:2018年3月12日
 */
public class TimeSection implements Serializable {

	/**
	 * 
	 */
	private static final long serialVersionUID = -159160743683268503L;

	/**
	 * 开始时间HHmmss
	 */
	private int start;

	/**
	 * 截止时间
	 */
	private int end;

	/**
	 * 间隔时间
	 */
	private int intervalSeconds;

	/**
	 * @return the start
	 */
	public int getStart() {
		return start;
	}

	/**
	 * @param start the start to set
	 */
	public void setStart(int start) {
		this.start = start;
	}

	/**
	 * @return the end
	 */
	public int getEnd() {
		return end;
	}

	/**
	 * @param end the end to set
	 */
	public void setEnd(int end) {
		this.end = end;
	}

	/**
	 * @return the intervalSeconds
	 */
	public int getIntervalSeconds() {
		return intervalSeconds;
	}

	/**
	 * @param intervalSeconds the intervalSeconds to set
	 */
	public void setIntervalSeconds(int intervalSeconds) {
		this.intervalSeconds = intervalSeconds;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy