com.scudata.ide.spl.etl.FieldDefine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
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