@ningboyz/types 1.5.80 → 1.5.82

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
3
  "type": "module",
4
- "version": "1.5.80",
4
+ "version": "1.5.82",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -134,6 +134,8 @@ export interface IBillMainResponse {
134
134
  /** 结清标志:0:未关闭;1:已关闭 */
135
135
  hasEnded: number;
136
136
 
137
+ thirdApp: string;
138
+
137
139
  /** 合同编号 */
138
140
  yzhtHtbh: string;
139
141
  /** 票据类型.名称 */
@@ -287,6 +289,8 @@ export class TBillMainResponse implements IBillMainResponse {
287
289
  /** 结清标志:0:未关闭;1:已关闭 */
288
290
  hasEnded: number = 0;
289
291
 
292
+ thirdApp: string = "";
293
+
290
294
  /** 合同编号 */
291
295
  yzhtHtbh: string = "";
292
296
  /** 票据类型.名称 */
@@ -58,6 +58,8 @@ export interface ICardBookResponse {
58
58
  /** 权利其他情况 */
59
59
  cardMemo: string;
60
60
 
61
+ thirdApp: string;
62
+
61
63
  listPath: IPathResponse[];
62
64
  }
63
65
 
@@ -119,5 +121,7 @@ export class TCardBookResponse implements ICardBookResponse {
119
121
  /** 权利其他情况 */
120
122
  cardMemo: string = "";
121
123
 
124
+ thirdApp: string = "";
125
+
122
126
  listPath: IPathResponse[] = [];
123
127
  }
@@ -25,6 +25,8 @@ export interface ICardDataBillResponse {
25
25
  dictText: string;
26
26
  dictUses: string;
27
27
  dictMemo: string;
28
+
29
+ thirdApp: string;
28
30
  }
29
31
 
30
32
  export class TCardDataBillResponse implements ICardDataBillResponse {
@@ -53,6 +55,8 @@ export class TCardDataBillResponse implements ICardDataBillResponse {
53
55
  dictUses: string = "";
54
56
  dictMemo: string = "";
55
57
 
58
+ thirdApp: string = "";
59
+
56
60
  constructor(card: Partial<ICardDataBillResponse> = {}) {
57
61
  if (card) {
58
62
  _.merge(this, _.pick(card, Object.keys(this)));
@@ -96,6 +96,8 @@ export interface IDataResponse {
96
96
  /** 巡查模板.名称 */
97
97
  dictText: string;
98
98
 
99
+ thirdApp: string;
100
+
99
101
  autoCpbh: string; //#车牌号
100
102
  cardName: string;
101
103
  /** 单据编号 */
@@ -317,6 +319,8 @@ export class TDataResponse implements Type {
317
319
  dictMain: number = 0;
318
320
  /** 巡查模板.名称 */
319
321
  dictText: string = "";
322
+
323
+ thirdApp: string="";
320
324
 
321
325
  /**保管人 */
322
326
  cardMast: number = 0;
@@ -36,6 +36,8 @@ export interface ICardFromResponse {
36
36
  cardKJND: number;
37
37
  /** 备注信息 */
38
38
  fromMemo: string;
39
+
40
+ thirdApp: string;
39
41
  }
40
42
 
41
43
  export class TCardFromResponse implements ICardFromResponse {
@@ -65,4 +67,6 @@ export class TCardFromResponse implements ICardFromResponse {
65
67
  cardZcyz: number = 0;
66
68
  cardKJND: number = 0;
67
69
  fromMemo: string = "";
70
+
71
+ thirdApp: string = "";
68
72
  }
@@ -73,6 +73,8 @@ export interface ICardFwczResponse {
73
73
  /** 底价确定方式.名称 */
74
74
  fwczQdfsText: string;
75
75
 
76
+ thirdApp: string;
77
+
76
78
  lastDate: number;
77
79
  lastTime: number;
78
80
  flowMain: number;
@@ -158,6 +160,8 @@ export class TCardFwczResponse implements ICardFwczResponse {
158
160
  /** 底价确定方式.名称 */
159
161
  fwczQdfsText: string = "";
160
162
 
163
+ thirdApp: string = "";
164
+
161
165
  lastDate: number = 0;
162
166
  lastTime: number = 0;
163
167
  flowMain: number = 0;
@@ -44,6 +44,8 @@ export interface ICardHyhbBillResponse {
44
44
  acnoYhzh: string;
45
45
  billMemo: string;
46
46
 
47
+ thirdApp: string;
48
+
47
49
  listRoom: ICardRoomResponse[];
48
50
  }
49
51
 
@@ -91,5 +93,7 @@ export class TCardHyhbBillResponse implements ICardHyhbBillResponse {
91
93
  acnoYhzh: string = "";
92
94
  billMemo: string = "";
93
95
 
96
+ thirdApp: string = "";
97
+
94
98
  listRoom: ICardRoomResponse[] = [];
95
99
  }
@@ -36,6 +36,8 @@ export interface ICardHyhbResponse {
36
36
  userSize: number;
37
37
  hyhbMemo: string;
38
38
 
39
+ thirdApp: string;
40
+
39
41
  /** 单位编码 */
40
42
  sourceDW: string;
41
43
  /** 单位名称 */
@@ -80,6 +82,8 @@ export class TCardHyhbResponse implements ICardHyhbResponse {
80
82
  userSize: number = 0;
81
83
  hyhbMemo: string = "";
82
84
 
85
+ thirdApp: string = "";
86
+
83
87
  /** 单位编码 */
84
88
  sourceDW: string = "";
85
89
  /** 单位名称 */
@@ -369,6 +369,8 @@ export interface ICardMainResponse {
369
369
  /** 房屋类别(文本) */
370
370
  cardFclbText: string;
371
371
 
372
+ fromBillIndx: number;
373
+
372
374
  /** 单据状态 */
373
375
  fromCardStat: number;
374
376
  /** 变动前cardExid */
@@ -418,6 +420,8 @@ export interface ICardMainResponse {
418
420
  roomCode: string;
419
421
  // 地址
420
422
  roomAddr: string;
423
+
424
+ thirdApp: string;
421
425
  /**
422
426
  * 前端字段
423
427
  */
@@ -676,6 +680,8 @@ export class TCardMainResponse implements Type {
676
680
  userName: string = "";
677
681
  userGUID: string = "";
678
682
 
683
+ fromBillIndx: number = 0;
684
+
679
685
  fromCardStat: number = 0;
680
686
  fromCardExid: number = 0;
681
687
  fromValueNew: number = 0;
@@ -698,6 +704,8 @@ export class TCardMainResponse implements Type {
698
704
 
699
705
  roomCode: string = "";
700
706
  roomAddr: string = "";
707
+
708
+ thirdApp: string = "";
701
709
  /** 二维码 */
702
710
  cardQrde: string = "";
703
711
 
@@ -120,6 +120,8 @@ export interface ICardRoomResponse {
120
120
  /** 出租状态:1:已出租;0:未出租;-1:初始化 */
121
121
  roomStat: number;
122
122
 
123
+ thirdApp: string;
124
+
123
125
  /**附件 */
124
126
  listPath: TCore.IPathResponse[];
125
127
  }
@@ -243,5 +245,7 @@ export class TCardRoomResponse implements ICardRoomResponse {
243
245
  /** 出租状态:1:已出租;0:未出租;-1:初始化 */
244
246
  roomStat: number = -1;
245
247
 
248
+ thirdApp: string = "";
249
+
246
250
  listPath: TCore.IPathResponse[] = [];
247
251
  }
@@ -1,10 +1,10 @@
1
1
  import { construct, destruct } from "@aximario/json-tree";
2
2
  import _ from "lodash";
3
3
  import { type IBaseResponse, TBaseResponse } from "../base/IBaseResponse";
4
- import { IUnitResponse } from "./IUnitResponse.ts";
5
- import { IDictResponseDictPara, TDictResponseDictPara } from "./IDictResponseDictPara";
6
4
  import { TCore } from "../index.ts";
5
+ import { IDictResponseDictPara, TDictResponseDictPara } from "./IDictResponseDictPara";
7
6
  import { TPartResponse } from "./IPartResponse.ts";
7
+ import { IUnitResponse } from "./IUnitResponse.ts";
8
8
 
9
9
  export interface IDictResponse extends IBaseResponse<IDictResponse> {
10
10
  asParent: number;
@@ -61,6 +61,8 @@ export interface IDictResponse extends IBaseResponse<IDictResponse> {
61
61
  whoBuild: number; // 创建者ID
62
62
  dictParaConv: IDictResponseDictPara;
63
63
 
64
+ thirdApp: string;
65
+
64
66
  /**
65
67
  * 字典详情名称
66
68
  */
@@ -124,6 +126,7 @@ export class TDictResponse extends TBaseResponse<IDictResponse> implements IDict
124
126
  updateBy: string = "";
125
127
  userIndx: number = 0;
126
128
  whoBuild: number = 0;
129
+ thirdApp: string = "";
127
130
  detailName: string = "";
128
131
  detailCode: string = "";
129
132
  dictParaConv: IDictResponseDictPara = new TDictResponseDictPara();
@@ -144,7 +147,7 @@ export class TDictResponse extends TBaseResponse<IDictResponse> implements IDict
144
147
  try {
145
148
  const obj = JSON.parse(dictPara) as TDictResponseDictPara;
146
149
  return _.merge(defaultDictPara, obj);
147
- } catch (e) {}
150
+ } catch (e) { }
148
151
  return defaultDictPara;
149
152
  }
150
153
 
@@ -11,6 +11,10 @@ export interface IDictResponseDictPara {
11
11
  * 是否为默认值 为1则是默认值
12
12
  * */
13
13
  isDefault: number;
14
+ /**
15
+ * 是否为签名 1:是
16
+ * */
17
+ isSign: number;
14
18
  /**
15
19
  * 变动方式改变,改变对应配置。
16
20
  * 配置: 系统字典 变动方式-固定资产 约定参数
@@ -55,6 +59,7 @@ export class TDictResponseDictPara implements IDictResponseDictPara {
55
59
  step: number = 0;
56
60
  zb: boolean = false;
57
61
  isDefault: number = 0;
62
+ isSign: number = 0;
58
63
  required: boolean = false;
59
64
  hidden: boolean = false;
60
65
  show: boolean = false;
@@ -67,6 +67,8 @@ export interface ISysTravelResponse {
67
67
  menuName: string;
68
68
  withPara: string;
69
69
  travelID: number;
70
+
71
+ thirdApp: string;
70
72
  withParaConv: ISysTravelWithParaResponse;
71
73
  }
72
74
 
@@ -111,6 +113,7 @@ export class TSysTravelResponse implements ISysTravelResponse {
111
113
  menuUUID: string = "";
112
114
  menuName: string = "";
113
115
  withPara: string = "";
116
+ thirdApp: string = "";
114
117
  withParaConv: ISysTravelWithParaResponse = new TSysTravelWithParaResponse();
115
118
 
116
119
  static parseJson(withPara: string) {
@@ -121,7 +124,7 @@ export class TSysTravelResponse implements ISysTravelResponse {
121
124
  try {
122
125
  const temp = JSON.parse(withPara) as TSysTravelWithParaResponse;
123
126
  return _.merge(result, temp);
124
- } catch (e: any) {}
127
+ } catch (e: any) { }
125
128
  return result;
126
129
  }
127
130
 
@@ -100,6 +100,8 @@ export interface IUserResponse extends IBaseResponse<IUserResponse> {
100
100
  wbField5: string; // 法人
101
101
  usciCode: string;
102
102
 
103
+ thirdApp: string;
104
+
103
105
  get4deptText: string;
104
106
  get4unitText: string;
105
107
 
@@ -276,6 +278,8 @@ export class TUserResponse extends TBaseResponse<IUserResponse> implements IUser
276
278
  wbField5: string = ""; // 法人
277
279
  usciCode: string = ""; // 征信代码
278
280
 
281
+ thirdApp: string = "";
282
+
279
283
  usrPartnText: string = "";
280
284
  userTypeText: string = "";
281
285
  userUnitText: string = "";
@@ -25,6 +25,8 @@ export interface IYzhtDzmxResponse {
25
25
  dzenMode: number;
26
26
  /** 比例/金额 */
27
27
  outMoney: number;
28
+
29
+ thirdApp: string;
28
30
  }
29
31
 
30
32
  export class TYzhtDzmxResponse implements IYzhtDzmxResponse {
@@ -54,4 +56,6 @@ export class TYzhtDzmxResponse implements IYzhtDzmxResponse {
54
56
  dzenMode: number = 0;
55
57
  /** 比例/金额 */
56
58
  outMoney: number = 0;
59
+
60
+ thirdApp: string = "";
57
61
  }
@@ -50,6 +50,8 @@ export interface IYzhtFymxResponse {
50
50
  stField2: number;
51
51
  /** 备注 */
52
52
  billMemo: string;
53
+
54
+ thirdApp: string;
53
55
  }
54
56
 
55
57
  export class TYzhtFymxResponse implements IYzhtFymxResponse {
@@ -103,6 +105,8 @@ export class TYzhtFymxResponse implements IYzhtFymxResponse {
103
105
  /** 备注 */
104
106
  billMemo: string = "";
105
107
 
108
+ thirdApp: string = "";
109
+
106
110
  constructor(card: any = {}) {
107
111
  if (card) {
108
112
  _.merge(this, _.pick(card, Object.keys(this)));
@@ -329,6 +329,7 @@ export interface IYzhtMainResponse {
329
329
  expectEd: number;
330
330
  yzhtLock: number;
331
331
 
332
+ fromCardMain: number;
332
333
  fromRoomMain: number;
333
334
 
334
335
  /** 一体化项目名称 */
@@ -368,6 +369,8 @@ export interface IYzhtMainResponse {
368
369
  /** 异常原因 */
369
370
  errorMsg: string;
370
371
 
372
+ thirdApp: string;
373
+
371
374
  /** 支付期数 */
372
375
  billSize: number;
373
376
  billStat?: number | undefined;
@@ -707,6 +710,7 @@ export class TYzhtMainResponse implements IYzhtMainResponse {
707
710
  expectEd = 0;
708
711
  yzhtLock: number = 0;
709
712
 
713
+ fromCardMain: number = 0;
710
714
  fromRoomMain: number = 0;
711
715
 
712
716
  /** 一体化项目名称 */
@@ -746,6 +750,8 @@ export class TYzhtMainResponse implements IYzhtMainResponse {
746
750
  /** 异常原因 */
747
751
  errorMsg: string = "";
748
752
 
753
+ thirdApp: string = "";
754
+
749
755
  /** 支付期数 */
750
756
  billSize: number = 0;
751
757
  billStat?: number | undefined = undefined;