@ningboyz/types 1.4.128 → 1.4.129

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.4.128",
4
+ "version": "1.4.129",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -450,6 +450,8 @@ export interface ICardMainResponse {
450
450
  tablFrom: string; //路由
451
451
 
452
452
  ywdjIndx: number;
453
+
454
+ dataUses: string;
453
455
  }
454
456
  type Type = ICardMainResponse
455
457
  export class TCardMainResponse implements Type {
@@ -721,6 +723,10 @@ export class TCardMainResponse implements Type {
721
723
  gamsBill: number = 0;
722
724
 
723
725
  myoaStat: number = 0;
726
+ /**
727
+ * 用车判断审核人角色
728
+ */
729
+ dataUses: string = "";
724
730
 
725
731
  constructor(card: Partial<Type> = {}) {
726
732
  if (card) {
@@ -148,4 +148,6 @@ export enum TButtonType {
148
148
  unlock = "unlock",
149
149
  /** 取消预约*/
150
150
  cancelBook = "cancelBook",
151
+ /** 上传附件 */
152
+ uploadFile = "uploadFile",
151
153
  }
@@ -202,6 +202,10 @@ export interface IMyoaMainResponse {
202
202
  detailId: number;
203
203
  cardMain: number;
204
204
  fromCardIndx: number;
205
+ /**
206
+ * 用车判断审核人角色
207
+ */
208
+ dataUses: string;
205
209
 
206
210
  sField01: string; //用车用途文本
207
211
  sField02: string;
@@ -395,7 +399,11 @@ export class TMyoaMainResponse implements Type {
395
399
  //虚拟字段
396
400
  detailId: number = 0;
397
401
  cardMain: number = 0;
398
- fromCardIndx: number = 0;
402
+ fromCardIndx: number = 0
403
+ /**
404
+ * 用车判断审核人角色
405
+ */
406
+ dataUses: string = "";
399
407
 
400
408
  sField01: string = ""; //用车用途文本
401
409
  sField02: string = "";
@@ -1,15 +1,15 @@
1
1
  import { TWldy } from "..";
2
2
 
3
3
  export interface IStimulSoftData {
4
- jsonTemplates: string[];
4
+ jsonTemplate: string;
5
5
  listData: Array<TWldy.IWldyDataResponse[]>;
6
6
  }
7
7
 
8
8
  export class TStimulSoftData implements IStimulSoftData {
9
- jsonTemplates: string[];
9
+ jsonTemplate: string;
10
10
  listData: Array<TWldy.IWldyDataResponse[]>;
11
- constructor(jsonTemplates: string[], listData: Array<TWldy.IWldyDataResponse[]>) {
12
- this.jsonTemplates = jsonTemplates;
11
+ constructor(jsonTemplate: string, listData: Array<TWldy.IWldyDataResponse[]>) {
12
+ this.jsonTemplate = jsonTemplate;
13
13
  this.listData = listData;
14
14
  }
15
15
  }