@gizone/rrs-client 4.2.9-alpha.701 → 4.2.9-alpha.702

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.
@@ -588,10 +588,11 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration?: C
588
588
  /**
589
589
  *
590
590
  * @summary MDM-获取供应商信息
591
+ * @param {string} [vendorCode]
591
592
  * @param {*} [options] Override http request option.
592
593
  * @throws {RequiredError}
593
594
  */
594
- thirdMdmVendors: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
595
+ thirdMdmVendors: async (vendorCode?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
595
596
  const localVarPath = `/gizone/reimbursement-bill/third/vendors`;
596
597
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
597
598
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -608,6 +609,10 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration?: C
608
609
  // http bearer authentication required
609
610
  await setBearerAuthToObject(localVarHeaderParameter, configuration)
610
611
 
612
+ if (vendorCode !== undefined) {
613
+ localVarQueryParameter['vendorCode'] = vendorCode;
614
+ }
615
+
611
616
 
612
617
 
613
618
  setSearchParams(localVarUrlObj, localVarQueryParameter);
@@ -903,11 +908,12 @@ export const ReimbursementBillApiFp = function(configuration?: Configuration) {
903
908
  /**
904
909
  *
905
910
  * @summary MDM-获取供应商信息
911
+ * @param {string} [vendorCode]
906
912
  * @param {*} [options] Override http request option.
907
913
  * @throws {RequiredError}
908
914
  */
909
- async thirdMdmVendors(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListMdmIncrementVendorsVo>> {
910
- const localVarAxiosArgs = await localVarAxiosParamCreator.thirdMdmVendors(options);
915
+ async thirdMdmVendors(vendorCode?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListMdmIncrementVendorsVo>> {
916
+ const localVarAxiosArgs = await localVarAxiosParamCreator.thirdMdmVendors(vendorCode, options);
911
917
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
912
918
  const localVarOperationServerBasePath = operationServerMap['ReimbursementBillApi.thirdMdmVendors']?.[localVarOperationServerIndex]?.url;
913
919
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -1073,11 +1079,12 @@ export const ReimbursementBillApiFactory = function (configuration?: Configurati
1073
1079
  /**
1074
1080
  *
1075
1081
  * @summary MDM-获取供应商信息
1082
+ * @param {ReimbursementBillApiThirdMdmVendorsRequest} requestParameters Request parameters.
1076
1083
  * @param {*} [options] Override http request option.
1077
1084
  * @throws {RequiredError}
1078
1085
  */
1079
- thirdMdmVendors(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListMdmIncrementVendorsVo> {
1080
- return localVarFp.thirdMdmVendors(options).then((request) => request(axios, basePath));
1086
+ thirdMdmVendors(requestParameters: ReimbursementBillApiThirdMdmVendorsRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListMdmIncrementVendorsVo> {
1087
+ return localVarFp.thirdMdmVendors(requestParameters.vendorCode, options).then((request) => request(axios, basePath));
1081
1088
  },
1082
1089
  /**
1083
1090
  *
@@ -1377,6 +1384,20 @@ export interface ReimbursementBillApiThirdCzySystemOrganizationQueryMemberDetail
1377
1384
  readonly budgetOrgCode?: string
1378
1385
  }
1379
1386
 
1387
+ /**
1388
+ * Request parameters for thirdMdmVendors operation in ReimbursementBillApi.
1389
+ * @export
1390
+ * @interface ReimbursementBillApiThirdMdmVendorsRequest
1391
+ */
1392
+ export interface ReimbursementBillApiThirdMdmVendorsRequest {
1393
+ /**
1394
+ *
1395
+ * @type {string}
1396
+ * @memberof ReimbursementBillApiThirdMdmVendors
1397
+ */
1398
+ readonly vendorCode?: string
1399
+ }
1400
+
1380
1401
  /**
1381
1402
  * Request parameters for thirdMdmVendorsBankAccounts operation in ReimbursementBillApi.
1382
1403
  * @export
@@ -1547,12 +1568,13 @@ export class ReimbursementBillApi extends BaseAPI {
1547
1568
  /**
1548
1569
  *
1549
1570
  * @summary MDM-获取供应商信息
1571
+ * @param {ReimbursementBillApiThirdMdmVendorsRequest} requestParameters Request parameters.
1550
1572
  * @param {*} [options] Override http request option.
1551
1573
  * @throws {RequiredError}
1552
1574
  * @memberof ReimbursementBillApi
1553
1575
  */
1554
- public thirdMdmVendors(options?: RawAxiosRequestConfig) {
1555
- return ReimbursementBillApiFp(this.configuration).thirdMdmVendors(options).then((request) => request(this.axios, this.basePath));
1576
+ public thirdMdmVendors(requestParameters: ReimbursementBillApiThirdMdmVendorsRequest = {}, options?: RawAxiosRequestConfig) {
1577
+ return ReimbursementBillApiFp(this.configuration).thirdMdmVendors(requestParameters.vendorCode, options).then((request) => request(this.axios, this.basePath));
1556
1578
  }
1557
1579
 
1558
1580
  /**
@@ -142,10 +142,11 @@ export declare const ReimbursementBillApiAxiosParamCreator: (configuration?: Con
142
142
  /**
143
143
  *
144
144
  * @summary MDM-获取供应商信息
145
+ * @param {string} [vendorCode]
145
146
  * @param {*} [options] Override http request option.
146
147
  * @throws {RequiredError}
147
148
  */
148
- thirdMdmVendors: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
149
+ thirdMdmVendors: (vendorCode?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
149
150
  /**
150
151
  *
151
152
  * @summary MDM-通过供应商id获取供应商银行信息
@@ -282,10 +283,11 @@ export declare const ReimbursementBillApiFp: (configuration?: Configuration) =>
282
283
  /**
283
284
  *
284
285
  * @summary MDM-获取供应商信息
286
+ * @param {string} [vendorCode]
285
287
  * @param {*} [options] Override http request option.
286
288
  * @throws {RequiredError}
287
289
  */
288
- thirdMdmVendors(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListMdmIncrementVendorsVo>>;
290
+ thirdMdmVendors(vendorCode?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListMdmIncrementVendorsVo>>;
289
291
  /**
290
292
  *
291
293
  * @summary MDM-通过供应商id获取供应商银行信息
@@ -406,10 +408,11 @@ export declare const ReimbursementBillApiFactory: (configuration?: Configuration
406
408
  /**
407
409
  *
408
410
  * @summary MDM-获取供应商信息
411
+ * @param {ReimbursementBillApiThirdMdmVendorsRequest} requestParameters Request parameters.
409
412
  * @param {*} [options] Override http request option.
410
413
  * @throws {RequiredError}
411
414
  */
412
- thirdMdmVendors(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListMdmIncrementVendorsVo>;
415
+ thirdMdmVendors(requestParameters?: ReimbursementBillApiThirdMdmVendorsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListMdmIncrementVendorsVo>;
413
416
  /**
414
417
  *
415
418
  * @summary MDM-通过供应商id获取供应商银行信息
@@ -673,6 +676,19 @@ export interface ReimbursementBillApiThirdCzySystemOrganizationQueryMemberDetail
673
676
  */
674
677
  readonly budgetOrgCode?: string;
675
678
  }
679
+ /**
680
+ * Request parameters for thirdMdmVendors operation in ReimbursementBillApi.
681
+ * @export
682
+ * @interface ReimbursementBillApiThirdMdmVendorsRequest
683
+ */
684
+ export interface ReimbursementBillApiThirdMdmVendorsRequest {
685
+ /**
686
+ *
687
+ * @type {string}
688
+ * @memberof ReimbursementBillApiThirdMdmVendors
689
+ */
690
+ readonly vendorCode?: string;
691
+ }
676
692
  /**
677
693
  * Request parameters for thirdMdmVendorsBankAccounts operation in ReimbursementBillApi.
678
694
  * @export
@@ -808,11 +824,12 @@ export declare class ReimbursementBillApi extends BaseAPI {
808
824
  /**
809
825
  *
810
826
  * @summary MDM-获取供应商信息
827
+ * @param {ReimbursementBillApiThirdMdmVendorsRequest} requestParameters Request parameters.
811
828
  * @param {*} [options] Override http request option.
812
829
  * @throws {RequiredError}
813
830
  * @memberof ReimbursementBillApi
814
831
  */
815
- thirdMdmVendors(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListMdmIncrementVendorsVo, any, {}>>;
832
+ thirdMdmVendors(requestParameters?: ReimbursementBillApiThirdMdmVendorsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListMdmIncrementVendorsVo, any, {}>>;
816
833
  /**
817
834
  *
818
835
  * @summary MDM-通过供应商id获取供应商银行信息
@@ -471,10 +471,11 @@ const ReimbursementBillApiAxiosParamCreator = function (configuration) {
471
471
  /**
472
472
  *
473
473
  * @summary MDM-获取供应商信息
474
+ * @param {string} [vendorCode]
474
475
  * @param {*} [options] Override http request option.
475
476
  * @throws {RequiredError}
476
477
  */
477
- thirdMdmVendors: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
478
+ thirdMdmVendors: (vendorCode_1, ...args_1) => __awaiter(this, [vendorCode_1, ...args_1], void 0, function* (vendorCode, options = {}) {
478
479
  const localVarPath = `/gizone/reimbursement-bill/third/vendors`;
479
480
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
480
481
  const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
@@ -488,6 +489,9 @@ const ReimbursementBillApiAxiosParamCreator = function (configuration) {
488
489
  // authentication tokenScheme required
489
490
  // http bearer authentication required
490
491
  yield (0, common_1.setBearerAuthToObject)(localVarHeaderParameter, configuration);
492
+ if (vendorCode !== undefined) {
493
+ localVarQueryParameter['vendorCode'] = vendorCode;
494
+ }
491
495
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
492
496
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
493
497
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -794,13 +798,14 @@ const ReimbursementBillApiFp = function (configuration) {
794
798
  /**
795
799
  *
796
800
  * @summary MDM-获取供应商信息
801
+ * @param {string} [vendorCode]
797
802
  * @param {*} [options] Override http request option.
798
803
  * @throws {RequiredError}
799
804
  */
800
- thirdMdmVendors(options) {
805
+ thirdMdmVendors(vendorCode, options) {
801
806
  return __awaiter(this, void 0, void 0, function* () {
802
807
  var _a, _b, _c;
803
- const localVarAxiosArgs = yield localVarAxiosParamCreator.thirdMdmVendors(options);
808
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.thirdMdmVendors(vendorCode, options);
804
809
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
805
810
  const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['ReimbursementBillApi.thirdMdmVendors']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
806
811
  return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -976,11 +981,12 @@ const ReimbursementBillApiFactory = function (configuration, basePath, axios) {
976
981
  /**
977
982
  *
978
983
  * @summary MDM-获取供应商信息
984
+ * @param {ReimbursementBillApiThirdMdmVendorsRequest} requestParameters Request parameters.
979
985
  * @param {*} [options] Override http request option.
980
986
  * @throws {RequiredError}
981
987
  */
982
- thirdMdmVendors(options) {
983
- return localVarFp.thirdMdmVendors(options).then((request) => request(axios, basePath));
988
+ thirdMdmVendors(requestParameters = {}, options) {
989
+ return localVarFp.thirdMdmVendors(requestParameters.vendorCode, options).then((request) => request(axios, basePath));
984
990
  },
985
991
  /**
986
992
  *
@@ -1145,12 +1151,13 @@ class ReimbursementBillApi extends base_1.BaseAPI {
1145
1151
  /**
1146
1152
  *
1147
1153
  * @summary MDM-获取供应商信息
1154
+ * @param {ReimbursementBillApiThirdMdmVendorsRequest} requestParameters Request parameters.
1148
1155
  * @param {*} [options] Override http request option.
1149
1156
  * @throws {RequiredError}
1150
1157
  * @memberof ReimbursementBillApi
1151
1158
  */
1152
- thirdMdmVendors(options) {
1153
- return (0, exports.ReimbursementBillApiFp)(this.configuration).thirdMdmVendors(options).then((request) => request(this.axios, this.basePath));
1159
+ thirdMdmVendors(requestParameters = {}, options) {
1160
+ return (0, exports.ReimbursementBillApiFp)(this.configuration).thirdMdmVendors(requestParameters.vendorCode, options).then((request) => request(this.axios, this.basePath));
1154
1161
  }
1155
1162
  /**
1156
1163
  *
@@ -142,10 +142,11 @@ export declare const ReimbursementBillApiAxiosParamCreator: (configuration?: Con
142
142
  /**
143
143
  *
144
144
  * @summary MDM-获取供应商信息
145
+ * @param {string} [vendorCode]
145
146
  * @param {*} [options] Override http request option.
146
147
  * @throws {RequiredError}
147
148
  */
148
- thirdMdmVendors: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
149
+ thirdMdmVendors: (vendorCode?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
149
150
  /**
150
151
  *
151
152
  * @summary MDM-通过供应商id获取供应商银行信息
@@ -282,10 +283,11 @@ export declare const ReimbursementBillApiFp: (configuration?: Configuration) =>
282
283
  /**
283
284
  *
284
285
  * @summary MDM-获取供应商信息
286
+ * @param {string} [vendorCode]
285
287
  * @param {*} [options] Override http request option.
286
288
  * @throws {RequiredError}
287
289
  */
288
- thirdMdmVendors(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListMdmIncrementVendorsVo>>;
290
+ thirdMdmVendors(vendorCode?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<JsonResultListMdmIncrementVendorsVo>>;
289
291
  /**
290
292
  *
291
293
  * @summary MDM-通过供应商id获取供应商银行信息
@@ -406,10 +408,11 @@ export declare const ReimbursementBillApiFactory: (configuration?: Configuration
406
408
  /**
407
409
  *
408
410
  * @summary MDM-获取供应商信息
411
+ * @param {ReimbursementBillApiThirdMdmVendorsRequest} requestParameters Request parameters.
409
412
  * @param {*} [options] Override http request option.
410
413
  * @throws {RequiredError}
411
414
  */
412
- thirdMdmVendors(options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListMdmIncrementVendorsVo>;
415
+ thirdMdmVendors(requestParameters?: ReimbursementBillApiThirdMdmVendorsRequest, options?: RawAxiosRequestConfig): AxiosPromise<JsonResultListMdmIncrementVendorsVo>;
413
416
  /**
414
417
  *
415
418
  * @summary MDM-通过供应商id获取供应商银行信息
@@ -673,6 +676,19 @@ export interface ReimbursementBillApiThirdCzySystemOrganizationQueryMemberDetail
673
676
  */
674
677
  readonly budgetOrgCode?: string;
675
678
  }
679
+ /**
680
+ * Request parameters for thirdMdmVendors operation in ReimbursementBillApi.
681
+ * @export
682
+ * @interface ReimbursementBillApiThirdMdmVendorsRequest
683
+ */
684
+ export interface ReimbursementBillApiThirdMdmVendorsRequest {
685
+ /**
686
+ *
687
+ * @type {string}
688
+ * @memberof ReimbursementBillApiThirdMdmVendors
689
+ */
690
+ readonly vendorCode?: string;
691
+ }
676
692
  /**
677
693
  * Request parameters for thirdMdmVendorsBankAccounts operation in ReimbursementBillApi.
678
694
  * @export
@@ -808,11 +824,12 @@ export declare class ReimbursementBillApi extends BaseAPI {
808
824
  /**
809
825
  *
810
826
  * @summary MDM-获取供应商信息
827
+ * @param {ReimbursementBillApiThirdMdmVendorsRequest} requestParameters Request parameters.
811
828
  * @param {*} [options] Override http request option.
812
829
  * @throws {RequiredError}
813
830
  * @memberof ReimbursementBillApi
814
831
  */
815
- thirdMdmVendors(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListMdmIncrementVendorsVo, any, {}>>;
832
+ thirdMdmVendors(requestParameters?: ReimbursementBillApiThirdMdmVendorsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<JsonResultListMdmIncrementVendorsVo, any, {}>>;
816
833
  /**
817
834
  *
818
835
  * @summary MDM-通过供应商id获取供应商银行信息
@@ -468,10 +468,11 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration) {
468
468
  /**
469
469
  *
470
470
  * @summary MDM-获取供应商信息
471
+ * @param {string} [vendorCode]
471
472
  * @param {*} [options] Override http request option.
472
473
  * @throws {RequiredError}
473
474
  */
474
- thirdMdmVendors: (...args_1) => __awaiter(this, [...args_1], void 0, function* (options = {}) {
475
+ thirdMdmVendors: (vendorCode_1, ...args_1) => __awaiter(this, [vendorCode_1, ...args_1], void 0, function* (vendorCode, options = {}) {
475
476
  const localVarPath = `/gizone/reimbursement-bill/third/vendors`;
476
477
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
477
478
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -485,6 +486,9 @@ export const ReimbursementBillApiAxiosParamCreator = function (configuration) {
485
486
  // authentication tokenScheme required
486
487
  // http bearer authentication required
487
488
  yield setBearerAuthToObject(localVarHeaderParameter, configuration);
489
+ if (vendorCode !== undefined) {
490
+ localVarQueryParameter['vendorCode'] = vendorCode;
491
+ }
488
492
  setSearchParams(localVarUrlObj, localVarQueryParameter);
489
493
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
490
494
  localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
@@ -790,13 +794,14 @@ export const ReimbursementBillApiFp = function (configuration) {
790
794
  /**
791
795
  *
792
796
  * @summary MDM-获取供应商信息
797
+ * @param {string} [vendorCode]
793
798
  * @param {*} [options] Override http request option.
794
799
  * @throws {RequiredError}
795
800
  */
796
- thirdMdmVendors(options) {
801
+ thirdMdmVendors(vendorCode, options) {
797
802
  return __awaiter(this, void 0, void 0, function* () {
798
803
  var _a, _b, _c;
799
- const localVarAxiosArgs = yield localVarAxiosParamCreator.thirdMdmVendors(options);
804
+ const localVarAxiosArgs = yield localVarAxiosParamCreator.thirdMdmVendors(vendorCode, options);
800
805
  const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
801
806
  const localVarOperationServerBasePath = (_c = (_b = operationServerMap['ReimbursementBillApi.thirdMdmVendors']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
802
807
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -971,11 +976,12 @@ export const ReimbursementBillApiFactory = function (configuration, basePath, ax
971
976
  /**
972
977
  *
973
978
  * @summary MDM-获取供应商信息
979
+ * @param {ReimbursementBillApiThirdMdmVendorsRequest} requestParameters Request parameters.
974
980
  * @param {*} [options] Override http request option.
975
981
  * @throws {RequiredError}
976
982
  */
977
- thirdMdmVendors(options) {
978
- return localVarFp.thirdMdmVendors(options).then((request) => request(axios, basePath));
983
+ thirdMdmVendors(requestParameters = {}, options) {
984
+ return localVarFp.thirdMdmVendors(requestParameters.vendorCode, options).then((request) => request(axios, basePath));
979
985
  },
980
986
  /**
981
987
  *
@@ -1139,12 +1145,13 @@ export class ReimbursementBillApi extends BaseAPI {
1139
1145
  /**
1140
1146
  *
1141
1147
  * @summary MDM-获取供应商信息
1148
+ * @param {ReimbursementBillApiThirdMdmVendorsRequest} requestParameters Request parameters.
1142
1149
  * @param {*} [options] Override http request option.
1143
1150
  * @throws {RequiredError}
1144
1151
  * @memberof ReimbursementBillApi
1145
1152
  */
1146
- thirdMdmVendors(options) {
1147
- return ReimbursementBillApiFp(this.configuration).thirdMdmVendors(options).then((request) => request(this.axios, this.basePath));
1153
+ thirdMdmVendors(requestParameters = {}, options) {
1154
+ return ReimbursementBillApiFp(this.configuration).thirdMdmVendors(requestParameters.vendorCode, options).then((request) => request(this.axios, this.basePath));
1148
1155
  }
1149
1156
  /**
1150
1157
  *
@@ -377,14 +377,14 @@ export interface SysUser {
377
377
  'sourceUserId'?: string;
378
378
  /**
379
379
  *
380
- * @type {string}
380
+ * @type {number}
381
381
  * @memberof SysUser
382
382
  */
383
- 'cid'?: string;
383
+ 'cuserId'?: number;
384
384
  /**
385
385
  *
386
- * @type {number}
386
+ * @type {string}
387
387
  * @memberof SysUser
388
388
  */
389
- 'cuserId'?: number;
389
+ 'cid'?: string;
390
390
  }
@@ -377,14 +377,14 @@ export interface SysUser {
377
377
  'sourceUserId'?: string;
378
378
  /**
379
379
  *
380
- * @type {string}
380
+ * @type {number}
381
381
  * @memberof SysUser
382
382
  */
383
- 'cid'?: string;
383
+ 'cuserId'?: number;
384
384
  /**
385
385
  *
386
- * @type {number}
386
+ * @type {string}
387
387
  * @memberof SysUser
388
388
  */
389
- 'cuserId'?: number;
389
+ 'cid'?: string;
390
390
  }
@@ -388,16 +388,16 @@ export interface SysUser {
388
388
  'sourceUserId'?: string;
389
389
  /**
390
390
  *
391
- * @type {string}
391
+ * @type {number}
392
392
  * @memberof SysUser
393
393
  */
394
- 'cid'?: string;
394
+ 'cuserId'?: number;
395
395
  /**
396
396
  *
397
- * @type {number}
397
+ * @type {string}
398
398
  * @memberof SysUser
399
399
  */
400
- 'cuserId'?: number;
400
+ 'cid'?: string;
401
401
  }
402
402
 
403
403