@ningboyz/types 1.3.43 → 1.3.45

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.3.43",
4
+ "version": "1.3.45",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -263,6 +263,7 @@ export const CONST_SYS_TYPEU_甬农检_检验类别 = "甬农检-检验类别";
263
263
  export const CONST_SYS_TYPEU_甬农检_委托2_样品状态 = "甬农检-委托2-样品状态";
264
264
  export const CONST_SYS_TYPEU_甬农检_付费方式 = "甬农检-付费方式";
265
265
  export const CONST_SYS_TYPEU_甬农检_制备状态 = "甬农检-制备状态";
266
+ export const CONST_SYS_TYPEU_甬农检_储存条件 = "甬农检-储存条件";
266
267
  export const CONST_SYS_TYPEU_甬农检_检验状态 = "甬农检-检验状态";
267
268
  export const CONST_SYS_TYPEU_甬农检_样品类型 = "甬农检-样品类型";
268
269
  export const CONST_SYS_TYPEU_甬农检_样品交接_样品状态 = "甬农检-样品交接-样品状态";
@@ -79,6 +79,10 @@ export interface IHznkBaseResponse {
79
79
  dContact: string;
80
80
  /** 申请总金额 */
81
81
  totalVal: number;
82
+ /**项目类型(名称) */
83
+ typeText: string;
84
+ /**项目层级(名称) */
85
+ modeText: string;
82
86
 
83
87
  coverURL: string;
84
88
  touchURL: string;
@@ -93,6 +97,11 @@ export interface IHznkBaseResponse {
93
97
  userName: string;
94
98
  userGUID: string;
95
99
 
100
+ /**项目类型(名称) */
101
+ typeText: string;
102
+ /**项目层级(名称) */
103
+ modeText: string;
104
+
96
105
  /**附件 */
97
106
  listPath: TCore.IPathResponse[];
98
107
  listNBYH: TCore.IUserLiteResponse[];
@@ -160,6 +169,8 @@ export class THznkBaseResponse implements IHznkBaseResponse {
160
169
  wContact: string = "";
161
170
  dContact: string = "";
162
171
  totalVal: number = 0;
172
+ typeText: string = "";
173
+ modeText: string = "";
163
174
 
164
175
  coverURL: string = "";
165
176
  touchURL: string = "";
@@ -173,6 +184,8 @@ export class THznkBaseResponse implements IHznkBaseResponse {
173
184
  lastMemo: string = "";
174
185
  userName: string = "";
175
186
  userGUID: string = "";
187
+ typeText: string = "";
188
+ modeText: string = "";
176
189
 
177
190
  listPath: TCore.IPathResponse[] = [];
178
191
  listNBYH: TCore.IUserLiteResponse[] = [];
@@ -23,6 +23,15 @@ export interface IHznkFydwItemResponse {
23
23
  totalVal: number;
24
24
  dictMain: number;
25
25
  dictName: string;
26
+
27
+ /**到位经费单据编号 */
28
+ baseCode: string;
29
+ /**经办人 */
30
+ sqyhText: string;
31
+ /**所属部门 */
32
+ sqbmText: string;
33
+ /**制单日期 */
34
+ fromCreateAt: number;
26
35
  }
27
36
 
28
37
  export class THznkFydwItemResponse implements IHznkFydwItemResponse {
@@ -50,4 +59,13 @@ export class THznkFydwItemResponse implements IHznkFydwItemResponse {
50
59
  totalVal: number = 0;
51
60
  dictMain: number = 0;
52
61
  dictName: string = "";
62
+
63
+ /**到位经费单据编号 */
64
+ baseCode: string = "";
65
+ /**经办人 */
66
+ sqyhText: string = "";
67
+ /**所属部门 */
68
+ sqbmText: string = "";
69
+ /**制单日期 */
70
+ fromCreateAt: number = 0;
53
71
  }