Commit d40fa024 authored by 廖旭伟's avatar 廖旭伟

应用实体增加属性字段

parent 58368c15
...@@ -92,6 +92,11 @@ public class AppPdu extends BaseEntityLong { ...@@ -92,6 +92,11 @@ public class AppPdu extends BaseEntityLong {
*/ */
private Integer dataUpdate; private Integer dataUpdate;
/**
* 自主应用访问地址
*/
private String custUrl;
public AppPdu(){} public AppPdu(){}
/** /**
...@@ -375,6 +380,13 @@ public class AppPdu extends BaseEntityLong { ...@@ -375,6 +380,13 @@ public class AppPdu extends BaseEntityLong {
this.dataUpdate = dataUpdate; this.dataUpdate = dataUpdate;
} }
public String getCustUrl() {
return custUrl;
}
public void setCustUrl(String custUrl) {
this.custUrl = custUrl;
}
@Override @Override
public int hashCode() { public int hashCode() {
......
...@@ -22,4 +22,9 @@ public class AppsInfoVo extends BaseEntityLong { ...@@ -22,4 +22,9 @@ public class AppsInfoVo extends BaseEntityLong {
* 类型(1.应用程序,2.url) * 类型(1.应用程序,2.url)
*/ */
private Integer appType; private Integer appType;
/**
* 自主应用访问地址
*/
private String custUrl;
} }
\ No newline at end of file
...@@ -118,6 +118,7 @@ public class AppsInfoServiceImpl extends AbstractCRUDServiceImpl<AppsInfoDao, Ap ...@@ -118,6 +118,7 @@ public class AppsInfoServiceImpl extends AbstractCRUDServiceImpl<AppsInfoDao, Ap
appsInfoEntity.setUrl(pdu.getUrl()); appsInfoEntity.setUrl(pdu.getUrl());
appsInfoEntity.setAppType(pdu.getAppType()); appsInfoEntity.setAppType(pdu.getAppType());
appsInfoEntity.setServiceApi(pdu.getServiceApi()); appsInfoEntity.setServiceApi(pdu.getServiceApi());
appsInfoEntity.setCustUrl(pdu.getCustUrl());
return appsInfoEntity; return appsInfoEntity;
} }
} }
\ 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