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

com.scudata.ide.spl.etl.FieldDefine Maven / Gradle / Ivy

Go to download

SPL(Structured Process Language) A programming language specially for structured data computing.

There is a newer version: 20240823
Show newest version
package com.scudata.ide.spl.etl;

/**
 * ?ֶζ?????
 * ????ֶ?ͨ????Ҫ???????ƣ?????ʽ????ʽ????????????ֵ
 * ͨ??????ͨ?û???Ӧ?????ı༭??????ֵ??one??two??three????
 * @author Joancy
 *
 */
public class FieldDefine{
	String one;
	String two;
	String three;

	/**
	 * ??ȡ??1??????
	 * @return ????ֵ
	 */
	public String getOne() {
		return one;
	}

	/**
	 * ???õ?1??????
	 * @param one ????ֵ
	 */
	public void setOne(String one) {
		this.one = one;
	}

	/**
	 * ??ȡ??2??????
	 * @return ????ֵ
	 */
	public String getTwo() {
		return two;
	}

	/**
	 * ???õ?2??????
	 * @param two ????ֵ
	 */
	public void setTwo(String two) {
		this.two = two;
	}

	/**
	 * ??ȡ??3??????
	 * @return ????ֵ
	 */
	public String getThree() {
		return three;
	}

	/**
	 * ???õ?3??????
	 * @param three ????ֵ
	 */
	public void setThree(String three) {
		this.three = three;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy