@ningboyz/types 1.4.14 → 1.4.15
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
|
@@ -139,7 +139,7 @@ export interface IDataResponse {
|
|
|
139
139
|
cardKeep: number;
|
|
140
140
|
/**负责人 */
|
|
141
141
|
cardKeepText: string;
|
|
142
|
-
/**联系方式 */
|
|
142
|
+
/**联系方式(关联cardMain) */
|
|
143
143
|
dContact: string;
|
|
144
144
|
/**当前状态 */
|
|
145
145
|
cardZczt: number;
|
|
@@ -155,6 +155,8 @@ export interface IDataResponse {
|
|
|
155
155
|
cardMast: number;
|
|
156
156
|
/**保管人 */
|
|
157
157
|
cardMastText: string;
|
|
158
|
+
/**联系方式 */
|
|
159
|
+
wContact: string;
|
|
158
160
|
}
|
|
159
161
|
|
|
160
162
|
export class TDataResponse implements IDataResponse {
|
|
@@ -294,6 +296,7 @@ export class TDataResponse implements IDataResponse {
|
|
|
294
296
|
cardMast: number = 0;
|
|
295
297
|
/**保管人 */
|
|
296
298
|
cardMastText: string = "";
|
|
299
|
+
wContact: string = "";
|
|
297
300
|
|
|
298
301
|
static toFlowData(card: TDataResponse): TFlowDataResponse {
|
|
299
302
|
let result = new TFlowDataResponse();
|