@ningboyz/types 1.3.112 → 1.3.114

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.112",
4
+ "version": "1.3.114",
5
5
  "private": false,
6
6
  "description": "宁波甬政类型库",
7
7
  "author": "nbyt-syq",
@@ -68,6 +68,10 @@ export interface IUserLiteResponse {
68
68
  zbdwText: string;
69
69
  /**数据分类文本 (作者|通讯作者) */
70
70
  dataUses: string;
71
+ /**排名字典ID */
72
+ rankMain: number;
73
+ /**排名名称 */
74
+ rankText: string;
71
75
  }
72
76
 
73
77
  export class TUserLiteResponse implements IUserLiteResponse {
@@ -142,6 +146,9 @@ export class TUserLiteResponse implements IUserLiteResponse {
142
146
  zbdwText: string = "";
143
147
  /**数据分类文本 (作者|通讯作者) */
144
148
  dataUses: string = "";
149
+ rankMain: number = 0;
150
+ /**排名名称 */
151
+ rankText: string = "";
145
152
 
146
153
  constructor(data: Partial<IUserLiteResponse> = {}) {
147
154
  if (data) {
@@ -108,6 +108,14 @@ export interface IHznjXmsyResponse {
108
108
  wtrqDate: number;
109
109
  /** 报告日期 */
110
110
  bgrqDate: number;
111
+ /**抽样重量 */
112
+ xmsyCyzl: number;
113
+ /**到样重量 */
114
+ xmsyDyzl: number;
115
+ /**抽样日期 */
116
+ xmsyCyrq: number;
117
+ /**抽样人文本 */
118
+ nbyhText: string;
111
119
 
112
120
  coverURL: string;
113
121
  touchURL: string;
@@ -132,7 +140,8 @@ export interface IHznjXmsyResponse {
132
140
  listCJDW: THznj.IHznjXmsyCjdwResponse[];
133
141
  /**委托单位|受检单位 */
134
142
  listWTDW: THznj.IHznjXmsyWtdwResponse[];
135
-
143
+ /**抽样人员 */
144
+ listNBYH: TCore.IUserLiteResponse[];
136
145
 
137
146
  /**
138
147
  * 虚拟字段
@@ -215,6 +224,14 @@ export class THznjXmsyResponse implements IHznjXmsyResponse {
215
224
  wtrqDate: number = 0;
216
225
  /** 报告日期 */
217
226
  bgrqDate: number = 0;
227
+ /**抽样重量 */
228
+ xmsyCyzl: number = 0;
229
+ /**到样重量 */
230
+ xmsyDyzl: number = 0;
231
+ /**抽样日期 */
232
+ xmsyCyrq: number = 0;
233
+ /**抽样人文本 */
234
+ nbyhText: string = "";
218
235
 
219
236
  coverURL: string = "";
220
237
  touchURL: string = "";
@@ -231,13 +248,13 @@ export class THznjXmsyResponse implements IHznjXmsyResponse {
231
248
  flowMain: number = 0;
232
249
  flowNode: number = 0;
233
250
 
234
-
235
251
  xmjjIndx: number = 0;
236
252
 
237
253
  listPath: TCore.IPathResponse[] = [];
238
254
  listItem: THznj.IHznjXmsyItemResponse[] = [];
239
255
  listCJDW: THznj.IHznjXmsyCjdwResponse[] = [];
240
256
  listWTDW: THznj.IHznjXmsyWtdwResponse[] = [];
257
+ listNBYH: TCore.IUserLiteResponse[] = [];
241
258
 
242
259
  constructor(data: Partial<IHznjXmsyResponse> = {}) {
243
260
  if (data) {