You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
873 B
Java
40 lines
873 B
Java
package cokr.xit.fims.nxrp;
|
|
|
|
import cokr.xit.applib.UnnamedItems;
|
|
|
|
public class Jeju02 extends UnnamedItems {
|
|
|
|
private String[] itemsDscrp = {
|
|
"수신일자",
|
|
"원천시스템키",
|
|
"부서코드",
|
|
"경찰청연계응답명",
|
|
"경찰청납부자명",
|
|
"변경후납부자번호",
|
|
"납부자구분코드",
|
|
"납부자지번도로주소구분코드",
|
|
"납부자도로명코드",
|
|
"납부자주소지하여부",
|
|
"납부자건물본번",
|
|
"납부자건물부번",
|
|
"납부자우편번호",
|
|
"납부자주소",
|
|
"납부자상세주소",
|
|
"납부자법정도코드",
|
|
"납부자행정동코드"
|
|
};
|
|
|
|
public Jeju02(String line){
|
|
int len = itemsDscrp.length;
|
|
this.setItemLength(len);
|
|
String[] items = line.split("\\|",-1);
|
|
for(int i=1; i <= len; i++) {
|
|
this.set(i,items[i-1]);
|
|
}
|
|
}
|
|
|
|
public String get(int i) {
|
|
return this.items[i-1];
|
|
}
|
|
}
|