|
@@ -58,7 +58,7 @@ public class MarketInfo extends DataEntity<MarketInfo> {
|
|
// 新增字段
|
|
// 新增字段
|
|
private String webTitle; // 网站标题
|
|
private String webTitle; // 网站标题
|
|
//市场分类 多选
|
|
//市场分类 多选
|
|
- private List<String> marketTypeList;
|
|
|
|
|
|
+ private String marketTypeList;
|
|
|
|
|
|
public MarketInfo() {
|
|
public MarketInfo() {
|
|
this(null);
|
|
this(null);
|
|
@@ -204,11 +204,11 @@ public class MarketInfo extends DataEntity<MarketInfo> {
|
|
this.webTitle = webTitle;
|
|
this.webTitle = webTitle;
|
|
}
|
|
}
|
|
|
|
|
|
- public List<String> getMarketTypeList() {
|
|
|
|
|
|
+ public String getMarketTypeList() {
|
|
return marketTypeList;
|
|
return marketTypeList;
|
|
}
|
|
}
|
|
|
|
|
|
- public void setMarketTypeList(List<String> marketTypeList) {
|
|
|
|
|
|
+ public void setMarketTypeList(String marketTypeList) {
|
|
this.marketTypeList = marketTypeList;
|
|
this.marketTypeList = marketTypeList;
|
|
}
|
|
}
|
|
}
|
|
}
|