|
@@ -55,15 +55,15 @@ public class D10016Service extends D10016BaseModel implements ExecProcessFlow {
|
|
|
List<D_D10016_COCODES_RECODE> coodeList= new ArrayList<>();
|
|
|
List<D_D10016_CHVALS_RECODE> chvalsList= new ArrayList<>();
|
|
|
while ((line = reader.readLine()) != null) {
|
|
|
+ String[] t = line.split(" ");
|
|
|
+ System.out.println(t);
|
|
|
if(linNum==1){
|
|
|
- String[] t = line.split(" ");
|
|
|
for (int i=1;i<t.length;i++) {
|
|
|
D_D10016_COCODES_RECODE cocode =new D_D10016_COCODES_RECODE();
|
|
|
cocode.setCocode(t[i]);
|
|
|
coodeList.add(cocode);
|
|
|
}
|
|
|
}else {
|
|
|
- String[] t = line.split(" ");
|
|
|
D_D10016_CHVALS_RECODE chval=new D_D10016_CHVALS_RECODE();
|
|
|
chval.setV1(t.length>1?t[1]:"0");
|
|
|
chval.setV2(t.length>2?t[2]:"0");
|