feat(REQ-2699):页面元素增加字段
This commit is contained in:
parent
02452cf587
commit
8b54388a96
@ -14,6 +14,7 @@ public enum PageElementTypeEnum {
|
||||
|
||||
PAGE("PAGE", "页面"),
|
||||
COMPONENT("COMPONENT", "组件"),
|
||||
APP_ENTRY("APP_ENTRY", "应用入口"),
|
||||
|
||||
;
|
||||
|
||||
|
||||
@ -48,6 +48,16 @@ public class PageElementResp {
|
||||
*/
|
||||
private String linkUrl;
|
||||
|
||||
/**
|
||||
* app类型(APP:原生,H5:h5页面)
|
||||
*/
|
||||
private String appType;
|
||||
|
||||
/**
|
||||
* 客户端版本号
|
||||
*/
|
||||
private Integer version;
|
||||
|
||||
/**
|
||||
* 是否已勾选
|
||||
*/
|
||||
|
||||
@ -61,4 +61,16 @@ public class SaasPageElement extends BaseEntity<SaasPageElement> {
|
||||
*/
|
||||
@TableField("create_name")
|
||||
private String createName;
|
||||
|
||||
/**
|
||||
* app类型(APP:原生,H5:h5页面)
|
||||
*/
|
||||
@TableField("app_type")
|
||||
private String appType;
|
||||
|
||||
/**
|
||||
* 客户端版本号
|
||||
*/
|
||||
@TableField("version")
|
||||
private Integer version;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user