feat(首页): 字典英文
This commit is contained in:
+1
@@ -723,6 +723,7 @@ public class LawsHomeSearchServiceImpl implements ILawsHomeSearchService {
|
||||
for (DictModel dict : listStandardClass) {
|
||||
LawsHomeNormalSearchStatisticsObjVO objVO = new LawsHomeNormalSearchStatisticsObjVO();
|
||||
objVO.setItemText(dict.getText());
|
||||
objVO.setItemTextEnglish(dict.getEnText());
|
||||
objVO.setItemValue(dict.getValue());
|
||||
if(!CollectionUtils.isEmpty(list)){
|
||||
List<LawsHomeNormalSearchCountVO> opList = list.stream().filter(o -> !StringUtils.isBlank(o.getDict()) && o.getDict().contains("," + dict.getValue() + ",") && Objects.equals(o.getFieldName(),data)).collect(Collectors.toList());
|
||||
|
||||
+5
@@ -17,6 +17,11 @@ public class LawsHomeNormalSearchStatisticsObjVO implements Serializable {
|
||||
*/
|
||||
@ApiModelProperty(value = "名称")
|
||||
private String itemText;
|
||||
/**
|
||||
* 英文名称
|
||||
*/
|
||||
@ApiModelProperty(value = "英文名称")
|
||||
private String itemTextEnglish;
|
||||
/**
|
||||
* 数据值
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user