|
@@ -112,7 +112,12 @@ public class CmBehaviorRecordServiceImpl implements CmBehaviorRecordService {
|
|
|
String value = split1[1];
|
|
|
String trim = value.trim();
|
|
|
if (StringUtils.isNotBlank(trim)) {
|
|
|
- cmBehaviorRecordPo.setBehaviorType(trim);
|
|
|
+ if (!trim.equals("null")) {
|
|
|
+ cmBehaviorRecordPo.setBehaviorType(trim);
|
|
|
+ } else {
|
|
|
+ cmBehaviorRecordPo.setBehaviorType("0");
|
|
|
+ }
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
}
|