@ningboyz/types 1.0.121 → 1.0.123

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@ningboyz/types",
3
- "version": "1.0.121",
3
+ "version": "1.0.123",
4
4
  "private": false,
5
5
  "description": "宁波甬政类型库",
6
6
  "author": "nbyt-syq",
@@ -284,7 +284,7 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
284
284
 
285
285
  //#进入流程
286
286
  static toFlowData(myoa: TMyoaMainResponse): TFlowDataResponse {
287
- let result = new TFlowDataResponse();
287
+ const result = new TFlowDataResponse();
288
288
  result.whoBuild = myoa.whoBuild;
289
289
  result.userIndx = myoa.userIndx;
290
290
  result.flowMain = myoa.flowMain;
@@ -294,6 +294,9 @@ export class TMyoaMainResponse implements IMyoaMainResponse {
294
294
  result.billMain = myoa.myoaIndx;
295
295
  result.billCode = myoa.myoaCode;
296
296
  result.billMemo = myoa.myoaMemo;
297
+ result.billUses = "";
298
+ result.ysxmText = "";
299
+ result.outMoney = 0;
297
300
  result.createAt = myoa.createAt;
298
301
  result.mastName = myoa.mastName;
299
302
  result.createBy = myoa.createBy;
@@ -283,7 +283,7 @@ export class TYzcgMainResponse implements IYzcgMainResponse {
283
283
  }
284
284
 
285
285
  static toFlowData(yzcg: TYzcgMainResponse): TFlowDataResponse {
286
- let result = new TFlowDataResponse();
286
+ const result = new TFlowDataResponse();
287
287
  result.whoBuild = yzcg.whoBuild;
288
288
  result.userIndx = yzcg.userIndx;
289
289
  result.flowMain = yzcg.flowMain;
@@ -299,9 +299,9 @@ export class TYzcgMainResponse implements IYzcgMainResponse {
299
299
  result.mastName = yzcg.mastName;
300
300
  result.createBy = yzcg.createBy;
301
301
  result.unitMain = yzcg.unitMain;
302
+ result.menuUUID = yzcg.menuUUID;
302
303
  result.deptMain = yzcg.deptMain;
303
304
  result.flowStat = yzcg.yzcgStat;
304
- result.menuUUID = yzcg.menuUUID;
305
305
  return result;
306
306
  }
307
307
  }