@ningboyz/types 1.3.83 → 1.3.84
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
|
@@ -5,6 +5,7 @@ import { IPathResponse } from "../core/IPathResponse";
|
|
|
5
5
|
import { TFlowDataResponse } from "../flow/IFlowDataResponse";
|
|
6
6
|
import * as Const from "../const";
|
|
7
7
|
import { TCore } from "../index.ts";
|
|
8
|
+
import { IMyoaMainResponse } from "../myoa/IMyoaMainResponse.ts";
|
|
8
9
|
/**
|
|
9
10
|
车辆保险:dataType=1加001,使用单位(unitDict),投保单位(dddwText),生效日期(handleAt),到期日期(autoBxrq)
|
|
10
11
|
车辆加油:dataType=1002,加油日期(handleAt),油油号(字典)(autoJyyh),加油容量(nowCount)
|
|
@@ -109,6 +110,8 @@ export interface IDataResponse {
|
|
|
109
110
|
/** 事前标识 1:允许被关联 0:默认值 */
|
|
110
111
|
todoLock: number;
|
|
111
112
|
listLock: IDataResponse[];
|
|
113
|
+
/**关联myoa */
|
|
114
|
+
listMyoa: IMyoaMainResponse[];
|
|
112
115
|
|
|
113
116
|
//#虚拟字段
|
|
114
117
|
ylcs: number; //#月里程数
|
|
@@ -234,6 +237,8 @@ export class TDataResponse implements IDataResponse {
|
|
|
234
237
|
|
|
235
238
|
listLock: IDataResponse[] = [];
|
|
236
239
|
|
|
240
|
+
listMyoa: IMyoaMainResponse[] = [];
|
|
241
|
+
|
|
237
242
|
//虚拟字段
|
|
238
243
|
ylcs: number = 0;
|
|
239
244
|
nclcs: number = 0;
|
|
@@ -188,6 +188,7 @@ export interface IMyoaMainResponse {
|
|
|
188
188
|
|
|
189
189
|
//虚拟字段
|
|
190
190
|
detailId: number;
|
|
191
|
+
cardMain: number;
|
|
191
192
|
}
|
|
192
193
|
|
|
193
194
|
export class TMyoaMainResponse implements IMyoaMainResponse {
|
|
@@ -355,6 +356,7 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
|
|
|
355
356
|
|
|
356
357
|
//虚拟字段
|
|
357
358
|
detailId: number = 0;
|
|
359
|
+
cardMain: number = 0;
|
|
358
360
|
|
|
359
361
|
constructor(card: keyof TMyoaMainResponse | object) {
|
|
360
362
|
if (card) {
|