Commit 7f4890cc authored by 廖旭伟's avatar 廖旭伟

测试bug修改

parent 02626ec6
...@@ -60,14 +60,18 @@ public class SiteMatterAssistEntity extends SiteMatterAssistVo { ...@@ -60,14 +60,18 @@ public class SiteMatterAssistEntity extends SiteMatterAssistVo {
* 联系电话 * 联系电话
*/ */
private String telephone; private String telephone;
/**
* 政务网地址
*/
private String govUrl;
/** /**
* 事项来源 * 事项来源
*/ */
private Integer source; private Integer source;
/**
* 浏览次数
*/
private Long viewsCount;
/**
* 政务网地址
*/
private String govUrl;
...@@ -226,20 +230,6 @@ public class SiteMatterAssistEntity extends SiteMatterAssistVo { ...@@ -226,20 +230,6 @@ public class SiteMatterAssistEntity extends SiteMatterAssistVo {
public void setTelephone(String telephone){ public void setTelephone(String telephone){
this.telephone = telephone; this.telephone = telephone;
} }
/**
* 获取 政务网地址
* @return String
*/
public String getGovUrl(){
return govUrl;
}
/**
* 设置 政务网地址
* @param govUrl
*/
public void setGovUrl(String govUrl){
this.govUrl = govUrl;
}
/** /**
* 获取 事项来源 * 获取 事项来源
* @return Integer * @return Integer
...@@ -254,6 +244,34 @@ public class SiteMatterAssistEntity extends SiteMatterAssistVo { ...@@ -254,6 +244,34 @@ public class SiteMatterAssistEntity extends SiteMatterAssistVo {
public void setSource(Integer source){ public void setSource(Integer source){
this.source = source; this.source = source;
} }
/**
* 获取 浏览次数
* @return Long
*/
public Long getViewsCount(){
return viewsCount;
}
/**
* 设置 浏览次数
* @param viewsCount
*/
public void setViewsCount(Long viewsCount){
this.viewsCount = viewsCount;
}
/**
* 获取 政务网地址
* @return String
*/
public String getGovUrl(){
return govUrl;
}
/**
* 设置 政务网地址
* @param govUrl
*/
public void setGovUrl(String govUrl){
this.govUrl = govUrl;
}
...@@ -287,8 +305,9 @@ public class SiteMatterAssistEntity extends SiteMatterAssistVo { ...@@ -287,8 +305,9 @@ public class SiteMatterAssistEntity extends SiteMatterAssistVo {
sb.append(",officeName:").append(getOfficeName()); sb.append(",officeName:").append(getOfficeName());
sb.append(",dutyer:").append(getDutyer()); sb.append(",dutyer:").append(getDutyer());
sb.append(",telephone:").append(getTelephone()); sb.append(",telephone:").append(getTelephone());
sb.append(",govUrl:").append(getGovUrl());
sb.append(",source:").append(getSource()); sb.append(",source:").append(getSource());
sb.append(",viewsCount:").append(getViewsCount());
sb.append(",govUrl:").append(getGovUrl());
return sb.toString(); return sb.toString();
} }
...@@ -316,8 +335,10 @@ public class SiteMatterAssistEntity extends SiteMatterAssistVo { ...@@ -316,8 +335,10 @@ public class SiteMatterAssistEntity extends SiteMatterAssistVo {
this.telephone = ""; this.telephone = "";
this.govUrl = "";
this.source = null; this.source = null;
this.viewsCount = 0L;
this.govUrl = "";
} }
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment