Commit 58368c15 authored by 廖旭伟's avatar 廖旭伟

应用实体增加属性字段

parent 1a3af81c
...@@ -14,4 +14,12 @@ import java.util.List; ...@@ -14,4 +14,12 @@ import java.util.List;
@Data @Data
public class AppsInfoVo extends BaseEntityLong { public class AppsInfoVo extends BaseEntityLong {
private Long siteId; private Long siteId;
/**
* 服务接口地址
*/
private String serviceApi;
/**
* 类型(1.应用程序,2.url)
*/
private Integer appType;
} }
\ No newline at end of file
...@@ -116,6 +116,8 @@ public class AppsInfoServiceImpl extends AbstractCRUDServiceImpl<AppsInfoDao, Ap ...@@ -116,6 +116,8 @@ public class AppsInfoServiceImpl extends AbstractCRUDServiceImpl<AppsInfoDao, Ap
appsInfoEntity.setDescribe(pdu.getSummary()); appsInfoEntity.setDescribe(pdu.getSummary());
appsInfoEntity.setIcon(pdu.getAppIconPath()); appsInfoEntity.setIcon(pdu.getAppIconPath());
appsInfoEntity.setUrl(pdu.getUrl()); appsInfoEntity.setUrl(pdu.getUrl());
appsInfoEntity.setAppType(pdu.getAppType());
appsInfoEntity.setServiceApi(pdu.getServiceApi());
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