통계 수정
parent
b4b50ae852
commit
7be1fa704c
@ -0,0 +1,45 @@
|
||||
package cokr.xit.fims.stat;
|
||||
|
||||
public class CodeSubsetInfo {
|
||||
|
||||
private String sourceGroup;
|
||||
|
||||
private String[] sourceCodes;
|
||||
|
||||
private String targetCode;
|
||||
|
||||
private String targetCodeVal;
|
||||
|
||||
public String getSourceGroup(){
|
||||
return this.sourceGroup;
|
||||
}
|
||||
|
||||
public void setSourceGroup(String sourceGroup){
|
||||
this.sourceGroup = sourceGroup;
|
||||
}
|
||||
|
||||
public String[] getSourceCodes(){
|
||||
return this.sourceCodes;
|
||||
}
|
||||
|
||||
public void setSourceCodes(String[] sourceCodes){
|
||||
this.sourceCodes = sourceCodes;
|
||||
}
|
||||
|
||||
public String getTargetCode(){
|
||||
return this.targetCode;
|
||||
}
|
||||
|
||||
public void setTargetCode(String targetCode){
|
||||
this.targetCode = targetCode;
|
||||
}
|
||||
|
||||
public String getTargetCodeVal(){
|
||||
return this.targetCodeVal;
|
||||
}
|
||||
|
||||
public void setTargetCodeVal(String targetCodeVal){
|
||||
this.targetCodeVal = targetCodeVal;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue