@ibiz/model-core 0.1.7 → 0.1.8
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/CHANGELOG.md +6 -0
- package/out/app/iapplication.d.ts +6 -0
- package/out/control/editor/ifile-uploader.d.ts +6 -0
- package/out/control/editor/ipicture.d.ts +6 -0
- package/package.json +1 -1
- package/src/app/iapplication.ts +7 -0
- package/src/control/editor/ifile-uploader.ts +7 -0
- package/src/control/editor/ipicture.ts +7 -0
package/CHANGELOG.md
CHANGED
|
@@ -205,6 +205,12 @@ export interface IApplication extends IModelObject {
|
|
|
205
205
|
* 来源 getCodeName
|
|
206
206
|
*/
|
|
207
207
|
codeName?: string;
|
|
208
|
+
/**
|
|
209
|
+
* 默认对象存储分类
|
|
210
|
+
* @type {string}
|
|
211
|
+
* 来源 getDefaultOSSCat
|
|
212
|
+
*/
|
|
213
|
+
defaultOSSCat?: string;
|
|
208
214
|
/**
|
|
209
215
|
* 动态系统模式
|
|
210
216
|
* @description 值模式 [动态系统模式] {0:不启用、 1:启用 }
|
|
@@ -6,6 +6,12 @@ import { IValueItemEditor } from './ivalue-item-editor';
|
|
|
6
6
|
* @interface IPicture
|
|
7
7
|
*/
|
|
8
8
|
export interface IPicture extends IValueItemEditor {
|
|
9
|
+
/**
|
|
10
|
+
* 对象存储分类[OSSCAT]
|
|
11
|
+
* @type {string}
|
|
12
|
+
* 来源 getOSSCat
|
|
13
|
+
*/
|
|
14
|
+
osscat?: string;
|
|
9
15
|
/**
|
|
10
16
|
* 直接内容存储
|
|
11
17
|
* @type {boolean}
|
package/package.json
CHANGED
package/src/app/iapplication.ts
CHANGED
|
@@ -242,6 +242,13 @@ export interface IApplication extends IModelObject {
|
|
|
242
242
|
*/
|
|
243
243
|
codeName?: string;
|
|
244
244
|
|
|
245
|
+
/**
|
|
246
|
+
* 默认对象存储分类
|
|
247
|
+
* @type {string}
|
|
248
|
+
* 来源 getDefaultOSSCat
|
|
249
|
+
*/
|
|
250
|
+
defaultOSSCat?: string;
|
|
251
|
+
|
|
245
252
|
/**
|
|
246
253
|
* 动态系统模式
|
|
247
254
|
* @description 值模式 [动态系统模式] {0:不启用、 1:启用 }
|
|
@@ -7,6 +7,13 @@ import { IValueItemEditor } from './ivalue-item-editor';
|
|
|
7
7
|
* @interface IPicture
|
|
8
8
|
*/
|
|
9
9
|
export interface IPicture extends IValueItemEditor {
|
|
10
|
+
/**
|
|
11
|
+
* 对象存储分类[OSSCAT]
|
|
12
|
+
* @type {string}
|
|
13
|
+
* 来源 getOSSCat
|
|
14
|
+
*/
|
|
15
|
+
osscat?: string;
|
|
16
|
+
|
|
10
17
|
/**
|
|
11
18
|
* 直接内容存储
|
|
12
19
|
* @type {boolean}
|