Просмотр исходного кода

fix(client): bookmark类型新增字段

lishihao 5 лет назад
Родитель
Сommit
d54249402e
2 измененных файлов с 6 добавлено и 1 удалено
  1. 1 1
      types/package.json
  2. 5 0
      types/src/interface/bill.ts

+ 1 - 1
types/package.json

@@ -1,6 +1,6 @@
 {
 {
   "name": "@sc/types",
   "name": "@sc/types",
-  "version": "1.0.19",
+  "version": "1.0.20",
   "description": "共用类型文件",
   "description": "共用类型文件",
   "main": "./dist/index.cjs.js",
   "main": "./dist/index.cjs.js",
   "module": "./dist/index.esm.js",
   "module": "./dist/index.esm.js",

+ 5 - 0
types/src/interface/bill.ts

@@ -16,10 +16,15 @@ export interface IItemCharacter {
   eigenvalue: IEigenvalue[];
   eigenvalue: IEigenvalue[];
   isChecked: boolean;
   isChecked: boolean;
 }
 }
+// 书签
 export interface IBookmark {
 export interface IBookmark {
   ID: string;
   ID: string;
   type: string;
   type: string;
   content: string;
   content: string;
+  creatorName: string;
+  creatorID: string;
+  createTime: number;
+  telNo: number;
 }
 }
 export interface IBill {
 export interface IBill {
   ID: string;
   ID: string;