@ningboyz/types 1.3.150 → 1.3.151
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
|
@@ -63,6 +63,8 @@ export interface IHznkNoteResponse {
|
|
|
63
63
|
lastTime: number;
|
|
64
64
|
/**实际赋分 */
|
|
65
65
|
inputVal: number;
|
|
66
|
+
/**实际赋分文本 */
|
|
67
|
+
inputTxt: string;
|
|
66
68
|
|
|
67
69
|
/**附件 */
|
|
68
70
|
listPath: TCore.IPathResponse[];
|
|
@@ -127,6 +129,7 @@ export class THznkNoteResponse implements IHznkNoteResponse {
|
|
|
127
129
|
/** 送审/审核时间 */
|
|
128
130
|
lastTime: number = 0;
|
|
129
131
|
inputVal: number = 0;
|
|
132
|
+
inputTxt: string = "";
|
|
130
133
|
|
|
131
134
|
listPath: TCore.IPathResponse[] = [];
|
|
132
135
|
listFrom: THznk.IHznkMainResponse[] = [];
|