Commit 8a5a2d7c authored by 廖旭伟's avatar 廖旭伟

自助终端获取应用集市应用类型增加应用主题类型

parent d320b712
...@@ -27,4 +27,9 @@ public class AppsInfoVo extends BaseEntityLong { ...@@ -27,4 +27,9 @@ public class AppsInfoVo extends BaseEntityLong {
* 自主应用访问地址 * 自主应用访问地址
*/ */
private String custUrl; private String custUrl;
/**
* 应用主题id
*/
private String appThemeName;
} }
\ No newline at end of file
...@@ -123,6 +123,7 @@ public class AppsInfoServiceImpl extends AbstractCRUDServiceImpl<AppsInfoDao, Ap ...@@ -123,6 +123,7 @@ public class AppsInfoServiceImpl extends AbstractCRUDServiceImpl<AppsInfoDao, Ap
appsInfoEntity.setAppType(pdu.getAppType()); appsInfoEntity.setAppType(pdu.getAppType());
appsInfoEntity.setServiceApi(pdu.getServiceApi()); appsInfoEntity.setServiceApi(pdu.getServiceApi());
appsInfoEntity.setCustUrl(pdu.getCustUrl()); appsInfoEntity.setCustUrl(pdu.getCustUrl());
appsInfoEntity.setAppThemeName(pdu.getAppThemeName());
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