|
@@ -165,9 +165,9 @@ public class EntitlementsImportAnalysis extends DataAnalysis<EntitlementsImportA
|
|
|
}
|
|
|
}
|
|
|
if (item.getPeriod() == null) {
|
|
|
- ret += "周期错误;";
|
|
|
+ ret += "周期错误且不能为空;";
|
|
|
} else if (item.getPeriod() == PeriodEnum.PERPETUAL) {
|
|
|
- if (!"SVIP".equals(item.getEntitlementType()) && "TENANT_ALBUM".equals(item.getEntitlementType())) {
|
|
|
+ if (!"SVIP".equals(item.getEntitlementType()) && !"TENANT_ALBUM".equals(item.getEntitlementType())) {
|
|
|
ret += "仅SVIP、机构专辑支持永久;";
|
|
|
}
|
|
|
item.setNumber("100");
|
|
@@ -184,7 +184,7 @@ public class EntitlementsImportAnalysis extends DataAnalysis<EntitlementsImportA
|
|
|
ret += "原因不能为空;";
|
|
|
}
|
|
|
if (item.getSendPush()== null) {
|
|
|
- ret += "是否发送推送错误;";
|
|
|
+ ret += "是否发送推送错误且不能为空;";
|
|
|
}
|
|
|
if (StringUtils.isNotEmpty(ret)) {
|
|
|
verifyDataMap.put(item.getRowIndex(), ret);
|