|
|
|
@ -40,8 +40,7 @@ public class Ye22NoticeReader extends AbstractComponent {
|
|
|
|
private Ye22NoticeInfoDTO read(String[] strs) {
|
|
|
|
private Ye22NoticeInfoDTO read(String[] strs) {
|
|
|
|
Ye22NoticeInfoDTO notice = null;
|
|
|
|
Ye22NoticeInfoDTO notice = null;
|
|
|
|
for (int i = 0; i < strs.length; ++i) {
|
|
|
|
for (int i = 0; i < strs.length; ++i) {
|
|
|
|
String str = strs[i];
|
|
|
|
String str = blankIfEmpty(strs[i]).trim();
|
|
|
|
str = str != null ? str.trim() : "";
|
|
|
|
|
|
|
|
if (isLabel(str)) return null;
|
|
|
|
if (isLabel(str)) return null;
|
|
|
|
|
|
|
|
|
|
|
|
if (notice == null)
|
|
|
|
if (notice == null)
|
|
|
|
|