@rxdrag/rxcms-models 0.1.4 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/classes/AbilityQueryOptions.d.ts +13 -0
- package/dist/classes/CustomerQueryOptions.d.ts +48 -0
- package/dist/classes/EnquiryQueryOptions.d.ts +36 -0
- package/dist/classes/LangQueryOptions.d.ts +36 -0
- package/dist/classes/MediaFolderQueryOptions.d.ts +30 -0
- package/dist/classes/MediaQueryOptions.d.ts +32 -0
- package/dist/classes/PageQueryOptions.d.ts +44 -0
- package/dist/classes/PostCategoryQueryOptions.d.ts +30 -0
- package/dist/classes/PostQueryOptions.d.ts +68 -0
- package/dist/classes/ProductCategoryQueryOptions.d.ts +30 -0
- package/dist/classes/ProductQueryOptions.d.ts +69 -0
- package/dist/classes/QueryOptions.d.ts +27 -0
- package/dist/classes/RoleQueryOptions.d.ts +16 -0
- package/dist/classes/SlugQueryOptions.d.ts +30 -0
- package/dist/classes/TagQueryOptions.d.ts +35 -0
- package/dist/classes/TemplateCategoryQueryOptions.d.ts +30 -0
- package/dist/classes/TemplateQueryOptions.d.ts +33 -0
- package/dist/classes/ThemeQueryOptions.d.ts +33 -0
- package/dist/classes/UserQueryOptions.d.ts +69 -0
- package/dist/classes/WebsiteMetaQueryOptions.d.ts +7 -0
- package/dist/classes/WebsiteQueryOptions.d.ts +50 -0
- package/dist/classes/WebsiteSettingsQueryOptions.d.ts +32 -0
- package/dist/classes/WebsiteTypeQueryOptions.d.ts +33 -0
- package/dist/classes/index.d.ts +24 -0
- package/dist/classes/metainfo.d.ts +2 -0
- package/dist/fields/AbilityFields.d.ts +2 -0
- package/dist/fields/CustomerFields.d.ts +3 -1
- package/dist/fields/EnquiryFields.d.ts +3 -1
- package/dist/fields/LangFields.d.ts +2 -0
- package/dist/fields/MediaFields.d.ts +3 -1
- package/dist/fields/MediaFolderFields.d.ts +3 -1
- package/dist/fields/PageFields.d.ts +10 -3
- package/dist/fields/PostCategoryFields.d.ts +3 -1
- package/dist/fields/PostFields.d.ts +9 -2
- package/dist/fields/ProductCategoryFields.d.ts +3 -1
- package/dist/fields/ProductFields.d.ts +9 -2
- package/dist/fields/RoleFields.d.ts +3 -1
- package/dist/fields/SlugFields.d.ts +3 -1
- package/dist/fields/TagFields.d.ts +3 -1
- package/dist/fields/TemplateCategoryFields.d.ts +3 -1
- package/dist/fields/TemplateFields.d.ts +3 -1
- package/dist/fields/ThemeFields.d.ts +3 -1
- package/dist/fields/UserFields.d.ts +3 -1
- package/dist/fields/WebsiteFields.d.ts +3 -1
- package/dist/fields/WebsiteMetaFields.d.ts +2 -0
- package/dist/fields/WebsiteSettingsFields.d.ts +2 -0
- package/dist/fields/WebsiteTypeFields.d.ts +3 -1
- package/dist/fields/index.d.ts +0 -10
- package/dist/index.d.ts +1 -0
- package/dist/index.mjs +2380 -238
- package/dist/index.mjs.map +1 -1
- package/dist/interfaces/BaseEntityOrderBy.d.ts +1 -1
- package/dist/interfaces/CustomizeMediaOrderBy.d.ts +1 -1
- package/dist/interfaces/MediaAddonOrderBy.d.ts +5 -0
- package/dist/interfaces/MultiLangableOrderBy.d.ts +1 -1
- package/dist/interfaces/OgMeta.d.ts +5 -1
- package/dist/interfaces/OgMetaBoolExp.d.ts +5 -1
- package/dist/interfaces/OgMetaDistinctExp.d.ts +6 -2
- package/dist/interfaces/OgMetaOrderBy.d.ts +6 -2
- package/dist/interfaces/Page.d.ts +2 -0
- package/dist/interfaces/PageBoolExp.d.ts +2 -0
- package/dist/interfaces/PageDistinctExp.d.ts +5 -1
- package/dist/interfaces/PageInput.d.ts +2 -0
- package/dist/interfaces/PersonOrderBy.d.ts +1 -1
- package/dist/interfaces/Post.d.ts +1 -0
- package/dist/interfaces/PostBoolExp.d.ts +1 -0
- package/dist/interfaces/PostDistinctExp.d.ts +5 -1
- package/dist/interfaces/PostInput.d.ts +1 -0
- package/dist/interfaces/Product.d.ts +1 -0
- package/dist/interfaces/ProductBoolExp.d.ts +1 -0
- package/dist/interfaces/ProductDistinctExp.d.ts +5 -1
- package/dist/interfaces/ProductInput.d.ts +1 -0
- package/dist/interfaces/PublishableDistinctExp.d.ts +5 -1
- package/dist/interfaces/PublishableOrderBy.d.ts +1 -1
- package/dist/interfaces/SeoMetaOrderBy.d.ts +1 -1
- package/dist/interfaces/WebsiteContentDistinctExp.d.ts +5 -1
- package/dist/interfaces/WebsiteContentOrderBy.d.ts +1 -1
- package/dist/interfaces/WebsitePartOrderBy.d.ts +1 -1
- package/dist/interfaces/WebsiteUserOrderBy.d.ts +1 -1
- package/package.json +2 -2
- package/dist/fields/BaseEntityFields.d.ts +0 -15
- package/dist/fields/CustomizeMediaFields.d.ts +0 -7
- package/dist/fields/MultiLangableFields.d.ts +0 -4
- package/dist/fields/OgMetaFields.d.ts +0 -9
- package/dist/fields/PersonFields.d.ts +0 -26
- package/dist/fields/PublishableFields.d.ts +0 -35
- package/dist/fields/SeoMetaFields.d.ts +0 -6
- package/dist/fields/WebsiteContentFields.d.ts +0 -29
- package/dist/fields/WebsitePartFields.d.ts +0 -16
- package/dist/fields/WebsiteUserFields.d.ts +0 -35
|
@@ -2,8 +2,12 @@ export interface OgMeta {
|
|
|
2
2
|
id?: string;
|
|
3
3
|
ogTitle?: string;
|
|
4
4
|
ogDescription?: string;
|
|
5
|
-
ogImageUrl?: string;
|
|
6
5
|
ogUrl?: string;
|
|
7
6
|
ogSiteName?: string;
|
|
8
7
|
ogType?: string;
|
|
8
|
+
xCard?: string;
|
|
9
|
+
xSite?: string;
|
|
10
|
+
xTitle?: string;
|
|
11
|
+
xDescription?: string;
|
|
12
|
+
xUrl?: string;
|
|
9
13
|
}
|
|
@@ -7,8 +7,12 @@ export interface OgMetaBoolExp {
|
|
|
7
7
|
id?: IdComparisonExp;
|
|
8
8
|
ogTitle?: StringComparisonExp;
|
|
9
9
|
ogDescription?: StringComparisonExp;
|
|
10
|
-
ogImageUrl?: StringComparisonExp;
|
|
11
10
|
ogUrl?: StringComparisonExp;
|
|
12
11
|
ogSiteName?: StringComparisonExp;
|
|
13
12
|
ogType?: StringComparisonExp;
|
|
13
|
+
xCard?: StringComparisonExp;
|
|
14
|
+
xSite?: StringComparisonExp;
|
|
15
|
+
xTitle?: StringComparisonExp;
|
|
16
|
+
xDescription?: StringComparisonExp;
|
|
17
|
+
xUrl?: StringComparisonExp;
|
|
14
18
|
}
|
|
@@ -2,9 +2,13 @@ export declare enum OgMetaDistinctEnum {
|
|
|
2
2
|
id = "id",
|
|
3
3
|
ogTitle = "ogTitle",
|
|
4
4
|
ogDescription = "ogDescription",
|
|
5
|
-
ogImageUrl = "ogImageUrl",
|
|
6
5
|
ogUrl = "ogUrl",
|
|
7
6
|
ogSiteName = "ogSiteName",
|
|
8
|
-
ogType = "ogType"
|
|
7
|
+
ogType = "ogType",
|
|
8
|
+
xCard = "xCard",
|
|
9
|
+
xSite = "xSite",
|
|
10
|
+
xTitle = "xTitle",
|
|
11
|
+
xDescription = "xDescription",
|
|
12
|
+
xUrl = "xUrl"
|
|
9
13
|
}
|
|
10
14
|
export type OgMetaDistinctExp = OgMetaDistinctEnum;
|
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
import { OrderBy } from '
|
|
1
|
+
import { OrderBy } from '@rxdrag/entify-hooks';
|
|
2
2
|
export interface OgMetaOrderBy {
|
|
3
3
|
id?: OrderBy;
|
|
4
4
|
ogTitle?: OrderBy;
|
|
5
5
|
ogDescription?: OrderBy;
|
|
6
|
-
ogImageUrl?: OrderBy;
|
|
7
6
|
ogUrl?: OrderBy;
|
|
8
7
|
ogSiteName?: OrderBy;
|
|
9
8
|
ogType?: OrderBy;
|
|
9
|
+
xCard?: OrderBy;
|
|
10
|
+
xSite?: OrderBy;
|
|
11
|
+
xTitle?: OrderBy;
|
|
12
|
+
xDescription?: OrderBy;
|
|
13
|
+
xUrl?: OrderBy;
|
|
10
14
|
}
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { Slug } from './Slug';
|
|
2
|
+
import { Media } from './Media';
|
|
2
3
|
import { WebsiteContent } from './WebsiteContent';
|
|
3
4
|
export declare const PageEntityName = "Page";
|
|
4
5
|
export declare const PageEntityLabel = "";
|
|
@@ -12,4 +13,5 @@ export interface Page extends WebsiteContent {
|
|
|
12
13
|
remark?: string;
|
|
13
14
|
langAbbr?: string;
|
|
14
15
|
slug?: Slug;
|
|
16
|
+
ogImage?: Media;
|
|
15
17
|
}
|
|
@@ -2,6 +2,7 @@ import { WebsiteContentBoolExp } from './WebsiteContentBoolExp';
|
|
|
2
2
|
import { IdComparisonExp } from './IdComparisonExp';
|
|
3
3
|
import { StringComparisonExp } from './StringComparisonExp';
|
|
4
4
|
import { SlugBoolExp } from './SlugBoolExp';
|
|
5
|
+
import { MediaBoolExp } from './MediaBoolExp';
|
|
5
6
|
export interface PageBoolExp extends WebsiteContentBoolExp {
|
|
6
7
|
_and?: PageBoolExp[];
|
|
7
8
|
_or?: PageBoolExp[];
|
|
@@ -12,4 +13,5 @@ export interface PageBoolExp extends WebsiteContentBoolExp {
|
|
|
12
13
|
remark?: StringComparisonExp;
|
|
13
14
|
langAbbr?: StringComparisonExp;
|
|
14
15
|
slug?: SlugBoolExp;
|
|
16
|
+
ogImage?: MediaBoolExp;
|
|
15
17
|
}
|
|
@@ -23,10 +23,14 @@ export declare enum PageDistinctEnum {
|
|
|
23
23
|
seoDescription = "seoDescription",
|
|
24
24
|
ogTitle = "ogTitle",
|
|
25
25
|
ogDescription = "ogDescription",
|
|
26
|
-
ogImageUrl = "ogImageUrl",
|
|
27
26
|
ogUrl = "ogUrl",
|
|
28
27
|
ogSiteName = "ogSiteName",
|
|
29
28
|
ogType = "ogType",
|
|
29
|
+
xCard = "xCard",
|
|
30
|
+
xSite = "xSite",
|
|
31
|
+
xTitle = "xTitle",
|
|
32
|
+
xDescription = "xDescription",
|
|
33
|
+
xUrl = "xUrl",
|
|
30
34
|
lang = "lang"
|
|
31
35
|
}
|
|
32
36
|
export type PageDistinctExp = PageDistinctEnum | WebsiteContentDistinctExp;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { Page } from './Page';
|
|
2
2
|
import { SlugInput } from './SlugInput';
|
|
3
|
+
import { MediaInput } from './MediaInput';
|
|
3
4
|
import { SetHasOne } from '@rxdrag/entify-hooks';
|
|
4
5
|
import { WebsiteContent } from './WebsiteContent';
|
|
5
6
|
export interface PageInput extends WebsiteContent {
|
|
@@ -12,6 +13,7 @@ export interface PageInput extends WebsiteContent {
|
|
|
12
13
|
remark?: string;
|
|
13
14
|
langAbbr?: string;
|
|
14
15
|
slug?: SetHasOne<SlugInput>;
|
|
16
|
+
ogImage?: SetHasOne<MediaInput>;
|
|
15
17
|
}
|
|
16
18
|
export declare const pageToInputCascade: (entity: Page) => PageInput;
|
|
17
19
|
export declare const pageToInput: (entity: Page) => PageInput;
|
|
@@ -35,10 +35,14 @@ export declare enum PostDistinctEnum {
|
|
|
35
35
|
seoDescription = "seoDescription",
|
|
36
36
|
ogTitle = "ogTitle",
|
|
37
37
|
ogDescription = "ogDescription",
|
|
38
|
-
ogImageUrl = "ogImageUrl",
|
|
39
38
|
ogUrl = "ogUrl",
|
|
40
39
|
ogSiteName = "ogSiteName",
|
|
41
40
|
ogType = "ogType",
|
|
41
|
+
xCard = "xCard",
|
|
42
|
+
xSite = "xSite",
|
|
43
|
+
xTitle = "xTitle",
|
|
44
|
+
xDescription = "xDescription",
|
|
45
|
+
xUrl = "xUrl",
|
|
42
46
|
lang = "lang"
|
|
43
47
|
}
|
|
44
48
|
export type PostDistinctExp = PostDistinctEnum | PublishableDistinctExp;
|
|
@@ -24,6 +24,7 @@ export interface PostInput extends Publishable {
|
|
|
24
24
|
tags?: SetHasMany<TagInput>;
|
|
25
25
|
author?: SetHasOne<UserInput>;
|
|
26
26
|
cover?: SetHasOne<MediaInput>;
|
|
27
|
+
ogImage?: SetHasOne<MediaInput>;
|
|
27
28
|
category?: SetHasOne<PostCategoryInput>;
|
|
28
29
|
}
|
|
29
30
|
export declare const postToInputCascade: (entity: Post) => PostInput;
|
|
@@ -33,10 +33,14 @@ export declare enum ProductDistinctEnum {
|
|
|
33
33
|
seoDescription = "seoDescription",
|
|
34
34
|
ogTitle = "ogTitle",
|
|
35
35
|
ogDescription = "ogDescription",
|
|
36
|
-
ogImageUrl = "ogImageUrl",
|
|
37
36
|
ogUrl = "ogUrl",
|
|
38
37
|
ogSiteName = "ogSiteName",
|
|
39
38
|
ogType = "ogType",
|
|
39
|
+
xCard = "xCard",
|
|
40
|
+
xSite = "xSite",
|
|
41
|
+
xTitle = "xTitle",
|
|
42
|
+
xDescription = "xDescription",
|
|
43
|
+
xUrl = "xUrl",
|
|
40
44
|
lang = "lang"
|
|
41
45
|
}
|
|
42
46
|
export type ProductDistinctExp = ProductDistinctEnum | PublishableDistinctExp;
|
|
@@ -19,6 +19,7 @@ export interface ProductInput extends Publishable {
|
|
|
19
19
|
medias?: SetHasMany<MediaInput & MediaAddon>;
|
|
20
20
|
slug?: SetHasOne<SlugInput>;
|
|
21
21
|
tags?: SetHasMany<TagInput>;
|
|
22
|
+
ogImage?: SetHasOne<MediaInput>;
|
|
22
23
|
creator?: SetHasOne<UserInput>;
|
|
23
24
|
}
|
|
24
25
|
export declare const productToInputCascade: (entity: Product) => ProductInput;
|
|
@@ -28,10 +28,14 @@ export declare enum PublishableDistinctEnum {
|
|
|
28
28
|
seoDescription = "seoDescription",
|
|
29
29
|
ogTitle = "ogTitle",
|
|
30
30
|
ogDescription = "ogDescription",
|
|
31
|
-
ogImageUrl = "ogImageUrl",
|
|
32
31
|
ogUrl = "ogUrl",
|
|
33
32
|
ogSiteName = "ogSiteName",
|
|
34
33
|
ogType = "ogType",
|
|
34
|
+
xCard = "xCard",
|
|
35
|
+
xSite = "xSite",
|
|
36
|
+
xTitle = "xTitle",
|
|
37
|
+
xDescription = "xDescription",
|
|
38
|
+
xUrl = "xUrl",
|
|
35
39
|
lang = "lang"
|
|
36
40
|
}
|
|
37
41
|
export type PublishableDistinctExp = PublishableDistinctEnum | WebsiteContentDistinctExp;
|
|
@@ -25,10 +25,14 @@ export declare enum WebsiteContentDistinctEnum {
|
|
|
25
25
|
seoDescription = "seoDescription",
|
|
26
26
|
ogTitle = "ogTitle",
|
|
27
27
|
ogDescription = "ogDescription",
|
|
28
|
-
ogImageUrl = "ogImageUrl",
|
|
29
28
|
ogUrl = "ogUrl",
|
|
30
29
|
ogSiteName = "ogSiteName",
|
|
31
30
|
ogType = "ogType",
|
|
31
|
+
xCard = "xCard",
|
|
32
|
+
xSite = "xSite",
|
|
33
|
+
xTitle = "xTitle",
|
|
34
|
+
xDescription = "xDescription",
|
|
35
|
+
xUrl = "xUrl",
|
|
32
36
|
lang = "lang"
|
|
33
37
|
}
|
|
34
38
|
export type WebsiteContentDistinctExp = WebsiteContentDistinctEnum | WebsitePartDistinctExp | SeoMetaDistinctExp | OgMetaDistinctExp | MultiLangableDistinctExp;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rxdrag/rxcms-models",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"main": "dist/index.mjs",
|
|
5
5
|
"module": "dist/index.mjs",
|
|
6
6
|
"files": [
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
},
|
|
18
18
|
"dependencies": {
|
|
19
19
|
"swr": "^2.2.4",
|
|
20
|
-
"@rxdrag/entify-hooks": "0.0
|
|
20
|
+
"@rxdrag/entify-hooks": "0.1.0"
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
23
|
"lint": "eslint . --ext .ts,tsx",
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
export declare enum PersonFields {
|
|
2
|
-
id = "id",
|
|
3
|
-
/**
|
|
4
|
-
* 邮箱
|
|
5
|
-
*/
|
|
6
|
-
email = "email",
|
|
7
|
-
/**
|
|
8
|
-
* 电话
|
|
9
|
-
*/
|
|
10
|
-
tel = "tel",
|
|
11
|
-
/**
|
|
12
|
-
* 电话2
|
|
13
|
-
*/
|
|
14
|
-
tel2 = "tel2",
|
|
15
|
-
name = "name",
|
|
16
|
-
mobile = "mobile",
|
|
17
|
-
whatsApp = "whatsApp",
|
|
18
|
-
linkedIn = "linkedIn",
|
|
19
|
-
twitter = "twitter",
|
|
20
|
-
facebook = "facebook",
|
|
21
|
-
instagram = "instagram",
|
|
22
|
-
/**
|
|
23
|
-
* 简介
|
|
24
|
-
*/
|
|
25
|
-
summary = "summary"
|
|
26
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
export declare enum PublishableFields {
|
|
2
|
-
id = "id",
|
|
3
|
-
/**
|
|
4
|
-
* 发布的内容
|
|
5
|
-
*/
|
|
6
|
-
publishedContent = "publishedContent",
|
|
7
|
-
publishedAt = "publishedAt",
|
|
8
|
-
status = "status",
|
|
9
|
-
title = "title",
|
|
10
|
-
content = "content",
|
|
11
|
-
extends = "extends",
|
|
12
|
-
websiteId = "websiteId",
|
|
13
|
-
/**
|
|
14
|
-
* 创建时间
|
|
15
|
-
*/
|
|
16
|
-
createdAt = "createdAt",
|
|
17
|
-
/**
|
|
18
|
-
* 更新时间
|
|
19
|
-
*/
|
|
20
|
-
updatedAt = "updatedAt",
|
|
21
|
-
/**
|
|
22
|
-
* 备注
|
|
23
|
-
*/
|
|
24
|
-
remark = "remark",
|
|
25
|
-
seoTitle = "seoTitle",
|
|
26
|
-
seoKeywords = "seoKeywords",
|
|
27
|
-
seoDescription = "seoDescription",
|
|
28
|
-
ogTitle = "ogTitle",
|
|
29
|
-
ogDescription = "ogDescription",
|
|
30
|
-
ogImageUrl = "ogImageUrl",
|
|
31
|
-
ogUrl = "ogUrl",
|
|
32
|
-
ogSiteName = "ogSiteName",
|
|
33
|
-
ogType = "ogType",
|
|
34
|
-
lang = "lang"
|
|
35
|
-
}
|
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
export declare enum WebsiteContentFields {
|
|
2
|
-
id = "id",
|
|
3
|
-
title = "title",
|
|
4
|
-
content = "content",
|
|
5
|
-
extends = "extends",
|
|
6
|
-
websiteId = "websiteId",
|
|
7
|
-
/**
|
|
8
|
-
* 创建时间
|
|
9
|
-
*/
|
|
10
|
-
createdAt = "createdAt",
|
|
11
|
-
/**
|
|
12
|
-
* 更新时间
|
|
13
|
-
*/
|
|
14
|
-
updatedAt = "updatedAt",
|
|
15
|
-
/**
|
|
16
|
-
* 备注
|
|
17
|
-
*/
|
|
18
|
-
remark = "remark",
|
|
19
|
-
seoTitle = "seoTitle",
|
|
20
|
-
seoKeywords = "seoKeywords",
|
|
21
|
-
seoDescription = "seoDescription",
|
|
22
|
-
ogTitle = "ogTitle",
|
|
23
|
-
ogDescription = "ogDescription",
|
|
24
|
-
ogImageUrl = "ogImageUrl",
|
|
25
|
-
ogUrl = "ogUrl",
|
|
26
|
-
ogSiteName = "ogSiteName",
|
|
27
|
-
ogType = "ogType",
|
|
28
|
-
lang = "lang"
|
|
29
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
export declare enum WebsiteUserFields {
|
|
2
|
-
id = "id",
|
|
3
|
-
/**
|
|
4
|
-
* 职位
|
|
5
|
-
*/
|
|
6
|
-
postion = "postion",
|
|
7
|
-
/**
|
|
8
|
-
* 自我介绍
|
|
9
|
-
*/
|
|
10
|
-
profile = "profile",
|
|
11
|
-
userType = "userType",
|
|
12
|
-
/**
|
|
13
|
-
* 邮箱
|
|
14
|
-
*/
|
|
15
|
-
email = "email",
|
|
16
|
-
/**
|
|
17
|
-
* 电话
|
|
18
|
-
*/
|
|
19
|
-
tel = "tel",
|
|
20
|
-
/**
|
|
21
|
-
* 电话2
|
|
22
|
-
*/
|
|
23
|
-
tel2 = "tel2",
|
|
24
|
-
name = "name",
|
|
25
|
-
mobile = "mobile",
|
|
26
|
-
whatsApp = "whatsApp",
|
|
27
|
-
linkedIn = "linkedIn",
|
|
28
|
-
twitter = "twitter",
|
|
29
|
-
facebook = "facebook",
|
|
30
|
-
instagram = "instagram",
|
|
31
|
-
/**
|
|
32
|
-
* 简介
|
|
33
|
-
*/
|
|
34
|
-
summary = "summary"
|
|
35
|
-
}
|