@ibiz/model-core 0.1.13 → 0.1.14

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.
@@ -307,4 +307,44 @@ export interface IApplication extends IModelObject {
307
307
  * 来源 isWFAppMode
308
308
  */
309
309
  wfappMode?: boolean;
310
+ /**
311
+ * 应用下方信息
312
+ *
313
+ * @author chitanda
314
+ * @date 2024-02-04 15:02:20
315
+ * @type {string}
316
+ */
317
+ bottomInfo?: string;
318
+ /**
319
+ * 应用头部信息
320
+ *
321
+ * @author chitanda
322
+ * @date 2024-02-04 15:02:39
323
+ * @type {string}
324
+ */
325
+ headerInfo?: string;
326
+ /**
327
+ * 应用抬头
328
+ *
329
+ * @author chitanda
330
+ * @date 2024-02-04 15:02:04
331
+ * @type {string}
332
+ */
333
+ title?: string;
334
+ /**
335
+ * 应用标题
336
+ *
337
+ * @author chitanda
338
+ * @date 2024-02-04 15:02:20
339
+ * @type {string}
340
+ */
341
+ caption?: string;
342
+ /**
343
+ * 应用子标题
344
+ *
345
+ * @author chitanda
346
+ * @date 2024-02-04 15:02:35
347
+ * @type {string}
348
+ */
349
+ subCaption?: string;
310
350
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ibiz/model-core",
3
- "version": "0.1.13",
3
+ "version": "0.1.14",
4
4
  "license": "MIT",
5
5
  "description": "动态模型接口",
6
6
  "type": "module",
@@ -365,4 +365,49 @@ export interface IApplication extends IModelObject {
365
365
  * 来源 isWFAppMode
366
366
  */
367
367
  wfappMode?: boolean;
368
+
369
+ /**
370
+ * 应用下方信息
371
+ *
372
+ * @author chitanda
373
+ * @date 2024-02-04 15:02:20
374
+ * @type {string}
375
+ */
376
+ bottomInfo?: string;
377
+
378
+ /**
379
+ * 应用头部信息
380
+ *
381
+ * @author chitanda
382
+ * @date 2024-02-04 15:02:39
383
+ * @type {string}
384
+ */
385
+ headerInfo?: string;
386
+
387
+ /**
388
+ * 应用抬头
389
+ *
390
+ * @author chitanda
391
+ * @date 2024-02-04 15:02:04
392
+ * @type {string}
393
+ */
394
+ title?: string;
395
+
396
+ /**
397
+ * 应用标题
398
+ *
399
+ * @author chitanda
400
+ * @date 2024-02-04 15:02:20
401
+ * @type {string}
402
+ */
403
+ caption?: string;
404
+
405
+ /**
406
+ * 应用子标题
407
+ *
408
+ * @author chitanda
409
+ * @date 2024-02-04 15:02:35
410
+ * @type {string}
411
+ */
412
+ subCaption?: string;
368
413
  }