fix:87325
This commit is contained in:
-1
@@ -95,7 +95,6 @@ public class LawsMarketStandardDetail implements Serializable {
|
||||
* 标准英文名称
|
||||
*/
|
||||
@ApiModelProperty(value = "标准英文名称")
|
||||
@NotBlank(message = "标准英文名称不能为空")
|
||||
@Excel(name = "标准英文名称", width = 15)
|
||||
private String standardEnglishName;
|
||||
|
||||
|
||||
+1
-2
@@ -274,8 +274,7 @@ public class LawsMarketStandardDetailServiceImpl extends ServiceImpl<LawsMarketS
|
||||
s.append("标准名称错误,");
|
||||
}
|
||||
// 验证标准英文名称
|
||||
if(!StringUtils.isEmpty(obj.getStandardEnglishName())
|
||||
&& !Objects.equals(obj.getStandardEnglishName(), p.getStandardEnglishName())){
|
||||
if(!Objects.equals(obj.getStandardEnglishName(), p.getStandardEnglishName())){
|
||||
s.append("标准英文名称错误,");
|
||||
}
|
||||
// 验证类型
|
||||
|
||||
Reference in New Issue
Block a user