【fix sonar】TableVo文件

This commit is contained in:
梁琦涛
2023-03-31 17:41:13 +08:00
parent 56b31187c4
commit 5e1cd4108e
@@ -12,7 +12,7 @@ public class TableVo {
private Integer fieldRowNum;
private Integer searchFieldNum;
private Integer fieldRequiredNum;
private Map<?, ?> extendParams;
private Map<String, Object> extendParams;
public String getEntityPackage() {
@@ -87,11 +87,11 @@ public class TableVo {
this.fieldRequiredNum = fieldRequiredNum;
}
public Map<?, ?> getExtendParams() {
public Map<String, Object> getExtendParams() {
return this.extendParams;
}
public void setExtendParams(Map<?, ?> extendParams) {
public void setExtendParams(Map<String, Object> extendParams) {
this.extendParams = extendParams;
}