@gizone/rrs-client 4.2.8-alpha.477 → 4.2.9-alpha.20251216150512
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/.openapi-generator/FILES +38 -1
- package/.openapi-generator/VERSION +1 -1
- package/README.md +4 -5
- package/api.ts +2 -0
- package/apis/access-api.ts +464 -378
- package/apis/app-auth-api.ts +118 -366
- package/apis/auth-api.ts +200 -696
- package/apis/calendar-api.ts +64 -64
- package/apis/cas-api.ts +9 -9
- package/apis/common-api.ts +415 -374
- package/apis/dashboard-api.ts +432 -161
- package/apis/device-api.ts +118 -27
- package/apis/disaster-warning-standard-api.ts +94 -94
- package/apis/energy-cost-controller-api.ts +769 -0
- package/apis/energy-cost-record-controller-api.ts +898 -0
- package/apis/equipment-api.ts +222 -222
- package/apis/excel-language-controller-api.ts +16 -16
- package/apis/hwork-api.ts +11 -11
- package/apis/inspection-standard-api.ts +111 -111
- package/apis/internal-api.ts +9 -9
- package/apis/jwt-api.ts +10 -10
- package/apis/maintenance-standard-api.ts +111 -111
- package/apis/message-api.ts +43 -43
- package/apis/notification-api.ts +63 -63
- package/apis/offline-alert-work-order-controller-api.ts +10 -10
- package/apis/open-api-api.ts +68 -68
- package/apis/park-api.ts +75 -75
- package/apis/privacy-api.ts +48 -48
- package/apis/role-api.ts +169 -169
- package/apis/setting-api.ts +250 -250
- package/apis/smsapi.ts +11 -11
- package/apis/space-api.ts +165 -165
- package/apis/supplier-api.ts +104 -104
- package/apis/surveillance-api.ts +325 -120
- package/apis/surveillance-settings-api.ts +80 -80
- package/apis/sys-api.ts +397 -397
- package/apis/test-api.ts +23 -23
- package/apis/user-api.ts +302 -302
- package/apis/web-hook-api.ts +27 -27
- package/apis/work-order-api.ts +634 -508
- package/base.ts +3 -3
- package/common.ts +1 -1
- package/configuration.ts +1 -7
- package/dist/api.d.ts +2 -0
- package/dist/api.js +2 -0
- package/dist/apis/access-api.d.ts +279 -231
- package/dist/apis/access-api.js +280 -242
- package/dist/apis/app-auth-api.d.ts +76 -176
- package/dist/apis/app-auth-api.js +75 -307
- package/dist/apis/auth-api.d.ts +132 -332
- package/dist/apis/auth-api.js +130 -594
- package/dist/apis/calendar-api.d.ts +40 -40
- package/dist/apis/calendar-api.js +40 -40
- package/dist/apis/cas-api.d.ts +7 -7
- package/dist/apis/cas-api.js +5 -5
- package/dist/apis/common-api.d.ts +269 -245
- package/dist/apis/common-api.js +266 -249
- package/dist/apis/dashboard-api.d.ts +241 -101
- package/dist/apis/dashboard-api.js +310 -100
- package/dist/apis/device-api.d.ts +65 -18
- package/dist/apis/device-api.js +85 -15
- package/dist/apis/disaster-warning-standard-api.d.ts +58 -58
- package/dist/apis/disaster-warning-standard-api.js +60 -60
- package/dist/apis/energy-cost-controller-api.d.ts +418 -0
- package/dist/apis/energy-cost-controller-api.js +595 -0
- package/dist/apis/energy-cost-record-controller-api.d.ts +488 -0
- package/dist/apis/energy-cost-record-controller-api.js +674 -0
- package/dist/apis/equipment-api.d.ts +138 -138
- package/dist/apis/equipment-api.js +140 -140
- package/dist/apis/excel-language-controller-api.d.ts +10 -10
- package/dist/apis/excel-language-controller-api.js +10 -10
- package/dist/apis/hwork-api.d.ts +8 -8
- package/dist/apis/hwork-api.js +5 -5
- package/dist/apis/inspection-standard-api.d.ts +69 -69
- package/dist/apis/inspection-standard-api.js +70 -70
- package/dist/apis/internal-api.d.ts +6 -6
- package/dist/apis/internal-api.js +5 -5
- package/dist/apis/jwt-api.d.ts +7 -7
- package/dist/apis/jwt-api.js +5 -5
- package/dist/apis/maintenance-standard-api.d.ts +69 -69
- package/dist/apis/maintenance-standard-api.js +70 -70
- package/dist/apis/message-api.d.ts +28 -28
- package/dist/apis/message-api.js +25 -25
- package/dist/apis/notification-api.d.ts +43 -43
- package/dist/apis/notification-api.js +40 -40
- package/dist/apis/offline-alert-work-order-controller-api.d.ts +7 -7
- package/dist/apis/offline-alert-work-order-controller-api.js +5 -5
- package/dist/apis/open-api-api.d.ts +44 -44
- package/dist/apis/open-api-api.js +40 -40
- package/dist/apis/park-api.d.ts +45 -45
- package/dist/apis/park-api.js +50 -50
- package/dist/apis/privacy-api.d.ts +30 -30
- package/dist/apis/privacy-api.js +30 -30
- package/dist/apis/role-api.d.ts +111 -111
- package/dist/apis/role-api.js +115 -115
- package/dist/apis/setting-api.d.ts +154 -154
- package/dist/apis/setting-api.js +160 -160
- package/dist/apis/smsapi.d.ts +8 -8
- package/dist/apis/smsapi.js +5 -5
- package/dist/apis/space-api.d.ts +102 -102
- package/dist/apis/space-api.js +105 -105
- package/dist/apis/supplier-api.d.ts +65 -65
- package/dist/apis/supplier-api.js +65 -65
- package/dist/apis/surveillance-api.d.ts +193 -75
- package/dist/apis/surveillance-api.js +189 -75
- package/dist/apis/surveillance-settings-api.d.ts +50 -50
- package/dist/apis/surveillance-settings-api.js +50 -50
- package/dist/apis/sys-api.d.ts +255 -255
- package/dist/apis/sys-api.js +275 -275
- package/dist/apis/test-api.d.ts +14 -14
- package/dist/apis/test-api.js +15 -15
- package/dist/apis/user-api.d.ts +196 -196
- package/dist/apis/user-api.js +200 -200
- package/dist/apis/web-hook-api.d.ts +18 -18
- package/dist/apis/web-hook-api.js +15 -15
- package/dist/apis/work-order-api.d.ts +386 -316
- package/dist/apis/work-order-api.js +407 -323
- package/dist/base.d.ts +2 -2
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -2
- package/dist/configuration.js +1 -2
- package/dist/esm/api.d.ts +2 -0
- package/dist/esm/api.js +2 -0
- package/dist/esm/apis/access-api.d.ts +279 -231
- package/dist/esm/apis/access-api.js +280 -242
- package/dist/esm/apis/app-auth-api.d.ts +76 -176
- package/dist/esm/apis/app-auth-api.js +75 -307
- package/dist/esm/apis/auth-api.d.ts +132 -332
- package/dist/esm/apis/auth-api.js +130 -594
- package/dist/esm/apis/calendar-api.d.ts +40 -40
- package/dist/esm/apis/calendar-api.js +40 -40
- package/dist/esm/apis/cas-api.d.ts +7 -7
- package/dist/esm/apis/cas-api.js +5 -5
- package/dist/esm/apis/common-api.d.ts +269 -245
- package/dist/esm/apis/common-api.js +266 -249
- package/dist/esm/apis/dashboard-api.d.ts +241 -101
- package/dist/esm/apis/dashboard-api.js +310 -100
- package/dist/esm/apis/device-api.d.ts +65 -18
- package/dist/esm/apis/device-api.js +85 -15
- package/dist/esm/apis/disaster-warning-standard-api.d.ts +58 -58
- package/dist/esm/apis/disaster-warning-standard-api.js +60 -60
- package/dist/esm/apis/energy-cost-controller-api.d.ts +418 -0
- package/dist/esm/apis/energy-cost-controller-api.js +588 -0
- package/dist/esm/apis/energy-cost-record-controller-api.d.ts +488 -0
- package/dist/esm/apis/energy-cost-record-controller-api.js +667 -0
- package/dist/esm/apis/equipment-api.d.ts +138 -138
- package/dist/esm/apis/equipment-api.js +140 -140
- package/dist/esm/apis/excel-language-controller-api.d.ts +10 -10
- package/dist/esm/apis/excel-language-controller-api.js +10 -10
- package/dist/esm/apis/hwork-api.d.ts +8 -8
- package/dist/esm/apis/hwork-api.js +5 -5
- package/dist/esm/apis/inspection-standard-api.d.ts +69 -69
- package/dist/esm/apis/inspection-standard-api.js +70 -70
- package/dist/esm/apis/internal-api.d.ts +6 -6
- package/dist/esm/apis/internal-api.js +5 -5
- package/dist/esm/apis/jwt-api.d.ts +7 -7
- package/dist/esm/apis/jwt-api.js +5 -5
- package/dist/esm/apis/maintenance-standard-api.d.ts +69 -69
- package/dist/esm/apis/maintenance-standard-api.js +70 -70
- package/dist/esm/apis/message-api.d.ts +28 -28
- package/dist/esm/apis/message-api.js +25 -25
- package/dist/esm/apis/notification-api.d.ts +43 -43
- package/dist/esm/apis/notification-api.js +40 -40
- package/dist/esm/apis/offline-alert-work-order-controller-api.d.ts +7 -7
- package/dist/esm/apis/offline-alert-work-order-controller-api.js +5 -5
- package/dist/esm/apis/open-api-api.d.ts +44 -44
- package/dist/esm/apis/open-api-api.js +40 -40
- package/dist/esm/apis/park-api.d.ts +45 -45
- package/dist/esm/apis/park-api.js +50 -50
- package/dist/esm/apis/privacy-api.d.ts +30 -30
- package/dist/esm/apis/privacy-api.js +30 -30
- package/dist/esm/apis/role-api.d.ts +111 -111
- package/dist/esm/apis/role-api.js +115 -115
- package/dist/esm/apis/setting-api.d.ts +154 -154
- package/dist/esm/apis/setting-api.js +160 -160
- package/dist/esm/apis/smsapi.d.ts +8 -8
- package/dist/esm/apis/smsapi.js +5 -5
- package/dist/esm/apis/space-api.d.ts +102 -102
- package/dist/esm/apis/space-api.js +105 -105
- package/dist/esm/apis/supplier-api.d.ts +65 -65
- package/dist/esm/apis/supplier-api.js +65 -65
- package/dist/esm/apis/surveillance-api.d.ts +193 -75
- package/dist/esm/apis/surveillance-api.js +189 -75
- package/dist/esm/apis/surveillance-settings-api.d.ts +50 -50
- package/dist/esm/apis/surveillance-settings-api.js +50 -50
- package/dist/esm/apis/sys-api.d.ts +255 -255
- package/dist/esm/apis/sys-api.js +275 -275
- package/dist/esm/apis/test-api.d.ts +14 -14
- package/dist/esm/apis/test-api.js +15 -15
- package/dist/esm/apis/user-api.d.ts +196 -196
- package/dist/esm/apis/user-api.js +200 -200
- package/dist/esm/apis/web-hook-api.d.ts +18 -18
- package/dist/esm/apis/web-hook-api.js +15 -15
- package/dist/esm/apis/work-order-api.d.ts +386 -316
- package/dist/esm/apis/work-order-api.js +407 -323
- package/dist/esm/base.d.ts +2 -2
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -2
- package/dist/esm/configuration.js +1 -2
- package/dist/esm/models/access-abnormal-type-enum.d.ts +2 -2
- package/dist/esm/models/access-abnormal-type-enum.js +2 -2
- package/dist/esm/models/access-appointment-record-add-vo.d.ts +15 -8
- package/dist/esm/models/access-appointment-record-details-dto.d.ts +18 -11
- package/dist/esm/models/access-appointment-record-process-approval-user-dto.d.ts +1 -1
- package/dist/esm/models/access-appointment-record-process-details-dto.d.ts +12 -6
- package/dist/esm/models/access-approval-config-vo.d.ts +2 -2
- package/dist/esm/models/access-blacklist-add-vo.d.ts +6 -0
- package/dist/esm/models/access-blacklist-details-dto.d.ts +6 -0
- package/dist/esm/models/access-blacklist-update-vo.d.ts +6 -0
- package/dist/esm/models/access-company-config-entity.d.ts +1 -1
- package/dist/esm/models/access-config-entity.d.ts +7 -1
- package/dist/esm/models/access-config-vo.d.ts +7 -1
- package/dist/esm/models/access-record-details-dto.d.ts +9 -9
- package/dist/esm/models/access-record-summary-details-dto.d.ts +14 -8
- package/dist/esm/models/access-record-summary-list-dto.d.ts +13 -7
- package/dist/esm/models/access-vehicle-length-enum.d.ts +6 -6
- package/dist/esm/models/access-vehicle-length-enum.js +6 -6
- package/dist/esm/models/access-visitor-person-type-config-vo.d.ts +3 -3
- package/dist/esm/models/access-whitelist-application-add-vo.d.ts +4 -4
- package/dist/esm/models/access-whitelist-application-batch-import-template-dto.d.ts +9 -3
- package/dist/esm/models/access-whitelist-application-details-dto.d.ts +6 -6
- package/dist/esm/models/access-whitelist-application-process-details-dto.d.ts +12 -6
- package/dist/esm/models/access-whitelist-application-update-vo.d.ts +1 -1
- package/dist/esm/models/app-login-wx-chat-dto.d.ts +1 -1
- package/dist/esm/models/area-park-dto.d.ts +1 -1
- package/dist/esm/models/base-error-result.d.ts +1 -1
- package/dist/esm/models/calendar-entity.d.ts +1 -1
- package/dist/esm/models/center-list-dto.d.ts +1 -1
- package/dist/esm/models/cuser-info.d.ts +1 -1
- package/dist/esm/models/dashboard-access-search-dto.d.ts +15 -3
- package/dist/esm/models/dashboard-access-source-group-stats-vo.d.ts +1 -1
- package/dist/esm/models/dashboard-base-search-dto.d.ts +12 -0
- package/dist/esm/models/dashboard-equipment-park-group-stats-vo.d.ts +1 -1
- package/dist/esm/models/dashboard-equipment-search-dto.d.ts +12 -0
- package/dist/esm/models/dashboard-equipment-system-group-stats-vo.d.ts +1 -1
- package/dist/esm/models/dashboard-park-statistics-vo.d.ts +36 -0
- package/dist/esm/models/dashboard-surveillance-functional-area-group-stats-vo.d.ts +7 -1
- package/dist/esm/models/dashboard-surveillance-park-group-stats-vo.d.ts +18 -0
- package/dist/esm/models/dashboard-surveillance-search-dto.d.ts +13 -1
- package/dist/esm/models/dashboard-work-order-by-park-search-dto.d.ts +17 -11
- package/dist/esm/models/dashboard-work-order-by-work-order-type-search-dto.d.ts +14 -8
- package/dist/esm/models/dashboard-work-order-by-work-order-type-subcategory-search-dto.d.ts +19 -1
- package/dist/esm/models/dashboard-work-order-issue-type-group-stats-vo.d.ts +1 -1
- package/dist/esm/models/dashboard-work-order-list-search-dto.d.ts +22 -16
- package/dist/esm/models/dashboard-work-order-type-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/dashboard-work-order-type-subcategory-group-stats-vo.d.ts +1 -1
- package/dist/esm/models/dept-relation-dto.d.ts +2 -2
- package/dist/esm/models/dept-relation.d.ts +2 -2
- package/dist/esm/models/disaster-warning-standard-add-or-update-vo.d.ts +1 -1
- package/dist/esm/models/disaster-warning-standard-entity.d.ts +1 -1
- package/dist/esm/models/disaster-warning-standard-import-dto.d.ts +1 -1
- package/dist/esm/models/emission-standard-enum.d.ts +22 -0
- package/dist/esm/models/emission-standard-enum.js +23 -0
- package/dist/esm/models/energy-cost-add-record-dto.d.ts +167 -0
- package/dist/esm/models/energy-cost-add-record-dto.js +36 -0
- package/dist/esm/models/energy-cost-add-setting-dto.d.ts +25 -0
- package/dist/esm/models/energy-cost-add-setting-dto.js +14 -0
- package/dist/esm/models/energy-cost-add-setting-dtopark-setting-item.d.ts +43 -0
- package/dist/esm/models/energy-cost-add-setting-dtopark-setting-item.js +19 -0
- package/dist/esm/models/energy-cost-add-setting-dtopark-setting.d.ts +42 -0
- package/dist/esm/models/energy-cost-add-setting-dtopark-setting.js +17 -0
- package/dist/esm/models/energy-cost-edit-record-dto.d.ts +173 -0
- package/dist/esm/models/energy-cost-edit-record-dto.js +36 -0
- package/dist/esm/models/energy-cost-month-setting-list-summary-standards-vo.d.ts +96 -0
- package/dist/esm/models/energy-cost-month-setting-list-summary-standards-vo.js +23 -0
- package/dist/esm/models/energy-cost-month-setting-list-vo.d.ts +107 -0
- package/dist/esm/models/energy-cost-month-setting-list-vo.js +17 -0
- package/dist/esm/models/energy-cost-record-bill-info-vo.d.ts +48 -0
- package/dist/esm/models/energy-cost-record-bill-info-vo.js +14 -0
- package/dist/esm/models/energy-cost-record-info-not-emun-vo.d.ts +205 -0
- package/dist/esm/models/energy-cost-record-info-not-emun-vo.js +14 -0
- package/dist/esm/models/energy-cost-record-info-vo.d.ts +232 -0
- package/dist/esm/models/energy-cost-record-info-vo.js +36 -0
- package/dist/esm/models/energy-cost-scenarios-info-not-enum-vo.d.ts +120 -0
- package/dist/esm/models/energy-cost-scenarios-info-not-enum-vo.js +14 -0
- package/dist/esm/models/energy-cost-scenarios-info-vo.d.ts +142 -0
- package/dist/esm/models/energy-cost-scenarios-info-vo.js +32 -0
- package/dist/esm/models/energy-cost-setting-delete-dto.d.ts +41 -0
- package/dist/esm/models/energy-cost-setting-delete-dto.js +17 -0
- package/dist/esm/models/energy-cost-setting-summy-add-dto.d.ts +41 -0
- package/dist/esm/models/energy-cost-setting-summy-add-dto.js +17 -0
- package/dist/esm/models/energy-cost-setting-summy-update-dto.d.ts +30 -0
- package/dist/esm/models/energy-cost-setting-summy-update-dto.js +14 -0
- package/dist/esm/models/energy-cost-update-setting-dto.d.ts +43 -0
- package/dist/esm/models/energy-cost-update-setting-dto.js +19 -0
- package/dist/esm/models/equipment-add-redis-list-dto.d.ts +1 -1
- package/dist/esm/models/equipment-detail-dto.d.ts +2 -2
- package/dist/esm/models/equipment-edit-batch-vo.d.ts +1 -1
- package/dist/esm/models/equipment-edit-vo.d.ts +2 -2
- package/dist/esm/models/equipment-search-system-dto.d.ts +3 -3
- package/dist/esm/models/equipment-search-vo.d.ts +1 -1
- package/dist/esm/models/equipment-status-stats-vo.d.ts +1 -1
- package/dist/esm/models/equipment-tree-details-dto.d.ts +2 -2
- package/dist/esm/models/equipment-tree-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-result-dtoaccess-whitelist-application-batch-import-template-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-result-dtocalendar-export-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-result-dtodisaster-warning-standard-import-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-result-dtoequipment-excel-add-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-result-dtoinspection-standard-import-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-result-dtomaintenance-standard-import-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-result-dtosurveillance-batch-import-template-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-result-dtosurveillance-settings-export-dto.d.ts +1 -1
- package/dist/esm/models/excel-import-upload-to-redis-vo-space-add-excel-dto.d.ts +1 -1
- package/dist/esm/models/exploration-work-order-add-vo.d.ts +3 -3
- package/dist/esm/models/exploration-work-order-details-dto.d.ts +9 -9
- package/dist/esm/models/exploration-work-order-info.d.ts +2 -2
- package/dist/esm/models/followup-work-order-dto.d.ts +1 -1
- package/dist/esm/models/group-dept-vo.d.ts +1 -1
- package/dist/esm/models/index.d.ts +36 -1
- package/dist/esm/models/index.js +36 -1
- package/dist/esm/models/inspection-handle-req.d.ts +1 -1
- package/dist/esm/models/inspection-point-item.d.ts +1 -1
- package/dist/esm/models/inspection-point.d.ts +13 -1
- package/dist/esm/models/inspection-point.js +5 -1
- package/dist/esm/models/inspection-standard-add-or-update-vo.d.ts +4 -4
- package/dist/esm/models/inspection-standard-dto.d.ts +4 -4
- package/dist/esm/models/inspection-standard-entity.d.ts +5 -5
- package/dist/esm/models/inspection-standard-import-dto.d.ts +2 -2
- package/dist/esm/models/insurance-work-order-issue-vo.d.ts +1 -1
- package/dist/esm/models/insurance-work-order-vo.d.ts +1 -1
- package/dist/esm/models/iot-device-unit-delete-dto.d.ts +42 -0
- package/dist/esm/models/iot-device-unit-delete-dto.js +14 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.d.ts +62 -0
- package/dist/esm/models/ipage-energy-cost-record-info-vo.js +14 -0
- package/dist/esm/models/item.d.ts +77 -0
- package/dist/esm/models/item.js +28 -0
- package/dist/esm/models/json-result-access-appointment-record-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-access-blacklist-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-access-company-config-entity.d.ts +2 -2
- package/dist/esm/models/json-result-access-config-entity.d.ts +2 -2
- package/dist/esm/models/json-result-access-record-summary-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-access-whitelist-application-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-admission-terms-record-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-applet-user-type-dto.d.ts +2 -2
- package/dist/esm/models/json-result-big-decimal.d.ts +1 -1
- package/dist/esm/models/json-result-boolean.d.ts +1 -1
- package/dist/esm/models/json-result-calendar-entity.d.ts +2 -2
- package/dist/esm/models/json-result-dashboard-park-statistics-vo.d.ts +62 -0
- package/dist/esm/models/json-result-dashboard-park-statistics-vo.js +14 -0
- package/dist/esm/models/json-result-disaster-warning-standard-entity.d.ts +2 -2
- package/dist/esm/models/json-result-energy-cost-record-bill-info-vo.d.ts +62 -0
- package/dist/esm/models/json-result-energy-cost-record-bill-info-vo.js +14 -0
- package/dist/esm/models/json-result-energy-cost-record-info-not-emun-vo.d.ts +62 -0
- package/dist/esm/models/json-result-energy-cost-record-info-not-emun-vo.js +14 -0
- package/dist/esm/models/{json-result-work-order-spot-check-dto.d.ts → json-result-energy-cost-record-info-vo.d.ts} +13 -13
- package/dist/esm/models/json-result-energy-cost-record-info-vo.js +14 -0
- package/dist/esm/models/json-result-equipment-add-redis-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-equipment-detail-dto.d.ts +2 -2
- package/dist/esm/models/json-result-equipment-search-system-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-result-dtoaccess-whitelist-application-batch-import-template-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-result-dtocalendar-export-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-result-dtodisaster-warning-standard-import-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-result-dtoequipment-excel-add-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-result-dtoinspection-standard-import-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-result-dtomaintenance-standard-import-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-result-dtosurveillance-batch-import-template-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-result-dtosurveillance-settings-export-dto.d.ts +2 -2
- package/dist/esm/models/json-result-excel-import-upload-to-redis-vo-space-add-excel-dto.d.ts +2 -2
- package/dist/esm/models/json-result-exploration-work-order-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-file-dto.d.ts +2 -2
- package/dist/esm/models/json-result-group-dept-vo.d.ts +2 -2
- package/dist/esm/models/json-result-inspection-standard-entity.d.ts +2 -2
- package/dist/esm/models/json-result-integer.d.ts +1 -1
- package/dist/esm/models/json-result-ipage-energy-cost-record-info-vo.d.ts +62 -0
- package/dist/esm/models/json-result-ipage-energy-cost-record-info-vo.js +14 -0
- package/dist/esm/models/json-result-json-result-list-space-tree-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-access-appointment-record-process-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-access-company-config-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-access-whitelist-application-process-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-address-region-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-applet-sys-user-drop-down-box-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-area-park-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-calendar-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-center-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-access-park-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-access-source-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-equipment-park-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-equipment-system-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-series-stats-base-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-surveillance-functional-area-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-surveillance-park-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-work-order-park-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-work-order-type-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-dashboard-work-order-type-subcategory-group-stats-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.d.ts +62 -0
- package/dist/esm/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.js +14 -0
- package/dist/esm/models/json-result-list-energy-cost-month-setting-list-vo.d.ts +62 -0
- package/dist/esm/models/json-result-list-energy-cost-month-setting-list-vo.js +14 -0
- package/dist/esm/models/json-result-list-equipment-detail-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-equipment-qr-code-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-equipment-system-tree-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-equipment-tree-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-inspection-point.d.ts +2 -2
- package/dist/esm/models/json-result-list-inspection-standard-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-maintenance-standard-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-park-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-plan-calendar-list-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-plan-calendar-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-space-image-detail-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-space-point-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-space-qr-code-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-space-tree-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-space-url-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-srm-center-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-supplier-select-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-surveillance-settings-coverage-standard-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-sys-dept-drop-down-box-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-sys-dept.d.ts +2 -2
- package/dist/esm/models/json-result-list-sys-user-drop-down-box-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-circulation-settings-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-circulation-vo.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-comment-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-dept-settings-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-inspection-detail-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-issue-type-settings-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-push-settings-entity.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-spot-check-dto.d.ts +62 -0
- package/dist/esm/models/json-result-list-work-order-spot-check-dto.js +14 -0
- package/dist/esm/models/json-result-list-work-order-step-by-step-push-user-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-list-work-order-type-settings-entity.d.ts +2 -2
- package/dist/esm/models/json-result-maintenance-standard-entity.d.ts +2 -2
- package/dist/esm/models/json-result-map-string-object.d.ts +63 -0
- package/dist/esm/models/json-result-map-string-object.js +14 -0
- package/dist/esm/models/json-result-monitoring-coverage-alert-work-order-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-network-monitor-repair-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-notice-entity.d.ts +2 -2
- package/dist/esm/models/json-result-offline-alert-work-order-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-access-appointment-record-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-access-blacklist-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-access-record-summary-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-access-whitelist-application-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-admission-terms-record-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-disaster-warning-standard-entity.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-equipment-search-system-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-inspection-standard-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-maintenance-standard-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-open-api-equipment-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-plan-search-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-supplier-contract-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-surveillance-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-sys-user-msg-dto.d.ts +2 -2
- package/dist/esm/models/json-result-page-dto-work-order-group-equipment-dto.d.ts +62 -0
- package/dist/esm/models/json-result-page-dto-work-order-group-equipment-dto.js +14 -0
- package/dist/esm/models/json-result-page-dto-work-order-search-dto.d.ts +2 -2
- package/dist/esm/models/json-result-park-info-dto.d.ts +2 -2
- package/dist/esm/models/json-result-park-settings-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-period-detail-resp.d.ts +2 -2
- package/dist/esm/models/json-result-plan-detail-dto.d.ts +2 -2
- package/dist/esm/models/json-result-space-add-redis-list-dto.d.ts +2 -2
- package/dist/esm/models/json-result-space-image-detail-dto.d.ts +2 -2
- package/dist/esm/models/json-result-srm-center-entity.d.ts +2 -2
- package/dist/esm/models/json-result-string.d.ts +1 -1
- package/dist/esm/models/json-result-supplier-contract-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-supplier-entity.d.ts +2 -2
- package/dist/esm/models/json-result-surveillance-count-dto.d.ts +2 -2
- package/dist/esm/models/json-result-surveillance-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-surveillance-live-dto.d.ts +2 -2
- package/dist/esm/models/json-result-surveillance-settings-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-surveillance-settings-polling-dto.d.ts +2 -2
- package/dist/esm/models/json-result-switch-park-v2-dto.d.ts +2 -2
- package/dist/esm/models/json-result-sys-dept.d.ts +2 -2
- package/dist/esm/models/json-result-sys-user-msg-dto.d.ts +2 -2
- package/dist/esm/models/json-result-sys-user.d.ts +2 -2
- package/dist/esm/models/json-result-user-add-redis-list-vo.d.ts +2 -2
- package/dist/esm/models/json-result-user-settings-entity.d.ts +2 -2
- package/dist/esm/models/json-result-violation-work-order-details-dto.d.ts +2 -2
- package/dist/esm/models/json-result-void.d.ts +1 -1
- package/dist/esm/models/json-result-work-order-dept-settings-entity.d.ts +2 -2
- package/dist/esm/models/json-result-work-order-detail-dto.d.ts +2 -2
- package/dist/esm/models/json-result-work-order-issue-type-settings-entity.d.ts +2 -2
- package/dist/esm/models/json-result.d.ts +1 -1
- package/dist/esm/models/maintenance-history-dto.d.ts +20 -1
- package/dist/esm/models/maintenance-standard-add-or-update-vo.d.ts +2 -2
- package/dist/esm/models/maintenance-standard-dto.d.ts +2 -2
- package/dist/esm/models/maintenance-standard-entity.d.ts +3 -3
- package/dist/esm/models/monitoring-coverage-alert-info.d.ts +13 -1
- package/dist/esm/models/monitoring-coverage-alert-process-vo.d.ts +1 -1
- package/dist/esm/models/monitoring-coverage-alert-reason-enum.d.ts +2 -0
- package/dist/esm/models/monitoring-coverage-alert-reason-enum.js +3 -1
- package/dist/esm/models/monitoring-coverage-alert-work-order-details-dto.d.ts +7 -7
- package/dist/esm/models/network-monitor-repair-add-vo.d.ts +3 -3
- package/dist/esm/models/network-monitor-repair-details-dto.d.ts +14 -14
- package/dist/esm/models/news-info.d.ts +1 -1
- package/dist/esm/models/offline-alert-submit-vo.d.ts +1 -1
- package/dist/esm/models/offline-alert-work-order-details-dto.d.ts +10 -10
- package/dist/esm/models/offline-alert-work-order-info.d.ts +2 -2
- package/dist/esm/models/offline-alert-work-order-vo.d.ts +1 -1
- package/dist/esm/models/open-api-access-appointment-record-add-vo.d.ts +14 -7
- package/dist/esm/models/open-api-access-appointment-record-delete-vo.d.ts +1 -1
- package/dist/esm/models/open-api-equipment-list-dto.d.ts +2 -2
- package/dist/esm/models/page-dto-access-appointment-record-details-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-access-blacklist-details-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-access-record-summary-list-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-access-whitelist-application-details-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-admission-terms-record-list-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-disaster-warning-standard-entity.d.ts +1 -1
- package/dist/esm/models/page-dto-equipment-search-system-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-inspection-standard-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-maintenance-standard-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-open-api-equipment-list-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-plan-search-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-supplier-contract-details-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-surveillance-details-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-sys-user-msg-dto.d.ts +1 -1
- package/dist/esm/models/page-dto-work-order-group-equipment-dto.d.ts +31 -0
- package/dist/esm/models/page-dto-work-order-group-equipment-dto.js +14 -0
- package/dist/esm/models/page-dto-work-order-search-dto.d.ts +1 -1
- package/dist/esm/models/park-info-dto.d.ts +7 -1
- package/dist/esm/models/park-info-edit-vo.d.ts +7 -1
- package/dist/esm/models/park-list-dto.d.ts +13 -0
- package/dist/esm/models/park.d.ts +1 -1
- package/dist/esm/models/period-detail-resp.d.ts +12 -12
- package/dist/esm/models/period-detail-resp.js +5 -5
- package/dist/esm/models/plan-add-vo.d.ts +9 -9
- package/dist/esm/models/plan-add-vo.js +5 -5
- package/dist/esm/models/plan-calendar-list-vo.d.ts +5 -5
- package/dist/esm/models/plan-calendar-list-vo.js +5 -5
- package/dist/esm/models/plan-detail-dto.d.ts +9 -9
- package/dist/esm/models/plan-detail-dto.js +5 -5
- package/dist/esm/models/plan-edit-vo.d.ts +9 -9
- package/dist/esm/models/plan-edit-vo.js +5 -5
- package/dist/esm/models/plan-inspection-items-dto.d.ts +3 -3
- package/dist/esm/models/plan-item-add-vo.d.ts +2 -2
- package/dist/esm/models/plan-item-edit-vo.d.ts +2 -2
- package/dist/esm/models/plan-search-dto.d.ts +9 -9
- package/dist/esm/models/plan-search-dto.js +5 -5
- package/dist/esm/models/pricing-item.d.ts +50 -0
- package/dist/esm/models/pricing-item.js +20 -0
- package/dist/esm/models/process-work-order-vo.d.ts +1 -1
- package/dist/esm/models/safety-smart-fire-record-gizone-dto.d.ts +1 -1
- package/dist/esm/models/save-period-work-order-detail-req.d.ts +1 -1
- package/dist/esm/models/sms-captcha-vo.d.ts +1 -1
- package/dist/esm/models/source-work-order-dto.d.ts +1 -1
- package/dist/esm/models/source-work-order-inspection-dto.d.ts +1 -1
- package/dist/esm/models/space-add-excel-dto.d.ts +0 -6
- package/dist/esm/models/space-add-redis-list-dto.d.ts +1 -1
- package/dist/esm/models/space-add-vo.d.ts +2 -2
- package/dist/esm/models/space-detail-dto.d.ts +4 -4
- package/dist/esm/models/space-edit-vo.d.ts +2 -2
- package/dist/esm/models/space-image-detail-dto.d.ts +2 -2
- package/dist/esm/models/space-tree-dto.d.ts +3 -3
- package/dist/esm/models/space.d.ts +1 -1
- package/dist/esm/models/srm-center-entity.d.ts +1 -1
- package/dist/esm/models/srm-center-vo.d.ts +1 -1
- package/dist/esm/models/srm-level-add-dto.d.ts +1 -1
- package/dist/esm/models/sub-buttons.d.ts +1 -1
- package/dist/esm/models/supplier-add-vo.d.ts +2 -2
- package/dist/esm/models/supplier-edit-vo.d.ts +2 -2
- package/dist/esm/models/supplier-entity.d.ts +2 -2
- package/dist/esm/models/surveillance-batch-import-template-dto.d.ts +19 -7
- package/dist/esm/models/surveillance-details-dto.d.ts +13 -7
- package/dist/esm/models/surveillance-entity.d.ts +171 -0
- package/dist/esm/models/surveillance-entity.js +14 -0
- package/dist/esm/models/surveillance-settings-coverage-standard-dto.d.ts +1 -1
- package/dist/esm/models/surveillance-settings-polling-dto.d.ts +2 -2
- package/dist/esm/models/surveillance-settings-polling-vo.d.ts +2 -2
- package/dist/esm/models/surveillance-update-vo.d.ts +8 -2
- package/dist/esm/models/switch-pak-body-v2-vo.d.ts +1 -1
- package/dist/esm/models/sync-equipment-status-vo.d.ts +1 -1
- package/dist/esm/models/sync-equipment-vo.d.ts +1 -1
- package/dist/esm/models/sys-user-info-dto.d.ts +3 -3
- package/dist/esm/models/sys-user-msg-dto.d.ts +2 -2
- package/dist/esm/models/sys-user.d.ts +4 -4
- package/dist/esm/models/user-add-redis-list-vo.d.ts +1 -1
- package/dist/esm/models/user-roles-and-permissions-dto.d.ts +1 -1
- package/dist/esm/models/violation-decision-vo.d.ts +20 -2
- package/dist/esm/models/violation-issue-type-enum.d.ts +1 -0
- package/dist/esm/models/violation-issue-type-enum.js +2 -1
- package/dist/esm/models/violation-work-order-add-vo.d.ts +10 -4
- package/dist/esm/models/violation-work-order-details-dto.d.ts +12 -12
- package/dist/esm/models/violation-work-order-info.d.ts +22 -4
- package/dist/esm/models/work-order-add-vo.d.ts +3 -3
- package/dist/esm/models/work-order-circulation-settings-add-or-update-vo.d.ts +2 -2
- package/dist/esm/models/work-order-circulation-settings-entity.d.ts +2 -2
- package/dist/esm/models/work-order-circulation-vo.d.ts +1 -1
- package/dist/esm/models/work-order-decision-vo.d.ts +2 -2
- package/dist/esm/models/work-order-dept-settings-entity.d.ts +1 -1
- package/dist/esm/models/work-order-detail-dto.d.ts +14 -14
- package/dist/esm/models/work-order-ext-data.d.ts +5 -5
- package/dist/esm/models/work-order-group-equipment-dto.d.ts +167 -0
- package/dist/esm/models/work-order-group-equipment-dto.js +18 -0
- package/dist/esm/models/work-order-group-equipment-dtoinspection-item.d.ts +36 -0
- package/dist/esm/models/work-order-group-equipment-dtoinspection-item.js +14 -0
- package/dist/esm/models/work-order-handler-dto.d.ts +1 -1
- package/dist/esm/models/work-order-internal-status-enum.d.ts +1 -0
- package/dist/esm/models/work-order-internal-status-enum.js +1 -0
- package/dist/esm/models/work-order-issue-type-settings-add-or-update-vo.d.ts +2 -2
- package/dist/esm/models/work-order-issue-type-settings-entity.d.ts +2 -2
- package/dist/esm/models/work-order-msg-remind-config-info.d.ts +2 -2
- package/dist/esm/models/work-order-push-settings-entity.d.ts +1 -1
- package/dist/esm/models/work-order-push-settings-save-or-update-vo.d.ts +1 -1
- package/dist/esm/models/work-order-push-settings-vo.d.ts +1 -1
- package/dist/esm/models/work-order-report-vo.d.ts +3 -3
- package/dist/esm/models/work-order-search-dto.d.ts +7 -7
- package/dist/esm/models/work-order-spot-check-dto.d.ts +22 -22
- package/dist/esm/models/work-order-spot-check-dto.js +7 -7
- package/dist/esm/models/work-order-staging-data-vo.d.ts +1 -1
- package/dist/esm/models/work-order-submit-vo.d.ts +2 -2
- package/dist/esm/models/work-order-type-msg-remind-config-add-or-update-vo.d.ts +2 -2
- package/dist/esm/models/work-order-type-settings-entity.d.ts +2 -2
- package/dist/esm/models/wx-ma-user-info.d.ts +1 -1
- package/dist/esm/models/wx-menu.d.ts +2 -2
- package/dist/esm/models/wx-mp-conditional-menu.d.ts +2 -2
- package/dist/esm/models/wx-mp-get-self-menu-info-result.d.ts +1 -1
- package/dist/esm/models/wx-mp-menu.d.ts +1 -1
- package/dist/esm/models/wx-mp-self-menu-button.d.ts +2 -2
- package/dist/esm/models/wx-mp-self-menu-info.d.ts +1 -1
- package/dist/models/access-abnormal-type-enum.d.ts +2 -2
- package/dist/models/access-abnormal-type-enum.js +2 -2
- package/dist/models/access-appointment-record-add-vo.d.ts +15 -8
- package/dist/models/access-appointment-record-details-dto.d.ts +18 -11
- package/dist/models/access-appointment-record-process-approval-user-dto.d.ts +1 -1
- package/dist/models/access-appointment-record-process-details-dto.d.ts +12 -6
- package/dist/models/access-approval-config-vo.d.ts +2 -2
- package/dist/models/access-blacklist-add-vo.d.ts +6 -0
- package/dist/models/access-blacklist-details-dto.d.ts +6 -0
- package/dist/models/access-blacklist-update-vo.d.ts +6 -0
- package/dist/models/access-company-config-entity.d.ts +1 -1
- package/dist/models/access-config-entity.d.ts +7 -1
- package/dist/models/access-config-vo.d.ts +7 -1
- package/dist/models/access-record-details-dto.d.ts +9 -9
- package/dist/models/access-record-summary-details-dto.d.ts +14 -8
- package/dist/models/access-record-summary-list-dto.d.ts +13 -7
- package/dist/models/access-vehicle-length-enum.d.ts +6 -6
- package/dist/models/access-vehicle-length-enum.js +6 -6
- package/dist/models/access-visitor-person-type-config-vo.d.ts +3 -3
- package/dist/models/access-whitelist-application-add-vo.d.ts +4 -4
- package/dist/models/access-whitelist-application-batch-import-template-dto.d.ts +9 -3
- package/dist/models/access-whitelist-application-details-dto.d.ts +6 -6
- package/dist/models/access-whitelist-application-process-details-dto.d.ts +12 -6
- package/dist/models/access-whitelist-application-update-vo.d.ts +1 -1
- package/dist/models/app-login-wx-chat-dto.d.ts +1 -1
- package/dist/models/area-park-dto.d.ts +1 -1
- package/dist/models/base-error-result.d.ts +1 -1
- package/dist/models/calendar-entity.d.ts +1 -1
- package/dist/models/center-list-dto.d.ts +1 -1
- package/dist/models/cuser-info.d.ts +1 -1
- package/dist/models/dashboard-access-search-dto.d.ts +15 -3
- package/dist/models/dashboard-access-source-group-stats-vo.d.ts +1 -1
- package/dist/models/dashboard-base-search-dto.d.ts +12 -0
- package/dist/models/dashboard-equipment-park-group-stats-vo.d.ts +1 -1
- package/dist/models/dashboard-equipment-search-dto.d.ts +12 -0
- package/dist/models/dashboard-equipment-system-group-stats-vo.d.ts +1 -1
- package/dist/models/dashboard-park-statistics-vo.d.ts +36 -0
- package/dist/models/dashboard-surveillance-functional-area-group-stats-vo.d.ts +7 -1
- package/dist/models/dashboard-surveillance-park-group-stats-vo.d.ts +18 -0
- package/dist/models/dashboard-surveillance-search-dto.d.ts +13 -1
- package/dist/models/dashboard-work-order-by-park-search-dto.d.ts +17 -11
- package/dist/models/dashboard-work-order-by-work-order-type-search-dto.d.ts +14 -8
- package/dist/models/dashboard-work-order-by-work-order-type-subcategory-search-dto.d.ts +19 -1
- package/dist/models/dashboard-work-order-issue-type-group-stats-vo.d.ts +1 -1
- package/dist/models/dashboard-work-order-list-search-dto.d.ts +22 -16
- package/dist/models/dashboard-work-order-type-group-stats-vo.d.ts +2 -2
- package/dist/models/dashboard-work-order-type-subcategory-group-stats-vo.d.ts +1 -1
- package/dist/models/dept-relation-dto.d.ts +2 -2
- package/dist/models/dept-relation.d.ts +2 -2
- package/dist/models/disaster-warning-standard-add-or-update-vo.d.ts +1 -1
- package/dist/models/disaster-warning-standard-entity.d.ts +1 -1
- package/dist/models/disaster-warning-standard-import-dto.d.ts +1 -1
- package/dist/models/emission-standard-enum.d.ts +22 -0
- package/dist/models/emission-standard-enum.js +26 -0
- package/dist/models/energy-cost-add-record-dto.d.ts +167 -0
- package/dist/models/energy-cost-add-record-dto.js +39 -0
- package/dist/models/energy-cost-add-setting-dto.d.ts +25 -0
- package/dist/models/energy-cost-add-setting-dto.js +15 -0
- package/dist/models/energy-cost-add-setting-dtopark-setting-item.d.ts +43 -0
- package/dist/models/energy-cost-add-setting-dtopark-setting-item.js +22 -0
- package/dist/models/energy-cost-add-setting-dtopark-setting.d.ts +42 -0
- package/dist/models/energy-cost-add-setting-dtopark-setting.js +20 -0
- package/dist/models/energy-cost-edit-record-dto.d.ts +173 -0
- package/dist/models/energy-cost-edit-record-dto.js +39 -0
- package/dist/models/energy-cost-month-setting-list-summary-standards-vo.d.ts +96 -0
- package/dist/models/energy-cost-month-setting-list-summary-standards-vo.js +26 -0
- package/dist/models/energy-cost-month-setting-list-vo.d.ts +107 -0
- package/dist/models/energy-cost-month-setting-list-vo.js +20 -0
- package/dist/models/energy-cost-record-bill-info-vo.d.ts +48 -0
- package/dist/models/energy-cost-record-bill-info-vo.js +15 -0
- package/dist/models/energy-cost-record-info-not-emun-vo.d.ts +205 -0
- package/dist/models/energy-cost-record-info-not-emun-vo.js +15 -0
- package/dist/models/energy-cost-record-info-vo.d.ts +232 -0
- package/dist/models/energy-cost-record-info-vo.js +39 -0
- package/dist/models/energy-cost-scenarios-info-not-enum-vo.d.ts +120 -0
- package/dist/models/energy-cost-scenarios-info-not-enum-vo.js +15 -0
- package/dist/models/energy-cost-scenarios-info-vo.d.ts +142 -0
- package/dist/models/energy-cost-scenarios-info-vo.js +35 -0
- package/dist/models/energy-cost-setting-delete-dto.d.ts +41 -0
- package/dist/models/energy-cost-setting-delete-dto.js +20 -0
- package/dist/models/energy-cost-setting-summy-add-dto.d.ts +41 -0
- package/dist/models/energy-cost-setting-summy-add-dto.js +20 -0
- package/dist/models/energy-cost-setting-summy-update-dto.d.ts +30 -0
- package/dist/models/energy-cost-setting-summy-update-dto.js +15 -0
- package/dist/models/energy-cost-update-setting-dto.d.ts +43 -0
- package/dist/models/energy-cost-update-setting-dto.js +22 -0
- package/dist/models/equipment-add-redis-list-dto.d.ts +1 -1
- package/dist/models/equipment-detail-dto.d.ts +2 -2
- package/dist/models/equipment-edit-batch-vo.d.ts +1 -1
- package/dist/models/equipment-edit-vo.d.ts +2 -2
- package/dist/models/equipment-search-system-dto.d.ts +3 -3
- package/dist/models/equipment-search-vo.d.ts +1 -1
- package/dist/models/equipment-status-stats-vo.d.ts +1 -1
- package/dist/models/equipment-tree-details-dto.d.ts +2 -2
- package/dist/models/equipment-tree-dto.d.ts +1 -1
- package/dist/models/excel-import-result-dtoaccess-whitelist-application-batch-import-template-dto.d.ts +1 -1
- package/dist/models/excel-import-result-dtocalendar-export-dto.d.ts +1 -1
- package/dist/models/excel-import-result-dtodisaster-warning-standard-import-dto.d.ts +1 -1
- package/dist/models/excel-import-result-dtoequipment-excel-add-dto.d.ts +1 -1
- package/dist/models/excel-import-result-dtoinspection-standard-import-dto.d.ts +1 -1
- package/dist/models/excel-import-result-dtomaintenance-standard-import-dto.d.ts +1 -1
- package/dist/models/excel-import-result-dtosurveillance-batch-import-template-dto.d.ts +1 -1
- package/dist/models/excel-import-result-dtosurveillance-settings-export-dto.d.ts +1 -1
- package/dist/models/excel-import-upload-to-redis-vo-space-add-excel-dto.d.ts +1 -1
- package/dist/models/exploration-work-order-add-vo.d.ts +3 -3
- package/dist/models/exploration-work-order-details-dto.d.ts +9 -9
- package/dist/models/exploration-work-order-info.d.ts +2 -2
- package/dist/models/followup-work-order-dto.d.ts +1 -1
- package/dist/models/group-dept-vo.d.ts +1 -1
- package/dist/models/index.d.ts +36 -1
- package/dist/models/index.js +36 -1
- package/dist/models/inspection-handle-req.d.ts +1 -1
- package/dist/models/inspection-point-item.d.ts +1 -1
- package/dist/models/inspection-point.d.ts +13 -1
- package/dist/models/inspection-point.js +6 -0
- package/dist/models/inspection-standard-add-or-update-vo.d.ts +4 -4
- package/dist/models/inspection-standard-dto.d.ts +4 -4
- package/dist/models/inspection-standard-entity.d.ts +5 -5
- package/dist/models/inspection-standard-import-dto.d.ts +2 -2
- package/dist/models/insurance-work-order-issue-vo.d.ts +1 -1
- package/dist/models/insurance-work-order-vo.d.ts +1 -1
- package/dist/models/iot-device-unit-delete-dto.d.ts +42 -0
- package/dist/models/iot-device-unit-delete-dto.js +15 -0
- package/dist/models/ipage-energy-cost-record-info-vo.d.ts +62 -0
- package/dist/models/ipage-energy-cost-record-info-vo.js +15 -0
- package/dist/models/item.d.ts +77 -0
- package/dist/models/item.js +31 -0
- package/dist/models/json-result-access-appointment-record-details-dto.d.ts +2 -2
- package/dist/models/json-result-access-blacklist-details-dto.d.ts +2 -2
- package/dist/models/json-result-access-company-config-entity.d.ts +2 -2
- package/dist/models/json-result-access-config-entity.d.ts +2 -2
- package/dist/models/json-result-access-record-summary-details-dto.d.ts +2 -2
- package/dist/models/json-result-access-whitelist-application-details-dto.d.ts +2 -2
- package/dist/models/json-result-admission-terms-record-details-dto.d.ts +2 -2
- package/dist/models/json-result-applet-user-type-dto.d.ts +2 -2
- package/dist/models/json-result-big-decimal.d.ts +1 -1
- package/dist/models/json-result-boolean.d.ts +1 -1
- package/dist/models/json-result-calendar-entity.d.ts +2 -2
- package/dist/models/json-result-dashboard-park-statistics-vo.d.ts +62 -0
- package/dist/models/json-result-dashboard-park-statistics-vo.js +15 -0
- package/dist/models/json-result-disaster-warning-standard-entity.d.ts +2 -2
- package/dist/models/json-result-energy-cost-record-bill-info-vo.d.ts +62 -0
- package/dist/models/json-result-energy-cost-record-bill-info-vo.js +15 -0
- package/dist/models/json-result-energy-cost-record-info-not-emun-vo.d.ts +62 -0
- package/dist/models/json-result-energy-cost-record-info-not-emun-vo.js +15 -0
- package/dist/models/{json-result-work-order-spot-check-dto.d.ts → json-result-energy-cost-record-info-vo.d.ts} +13 -13
- package/dist/models/json-result-energy-cost-record-info-vo.js +15 -0
- package/dist/models/json-result-equipment-add-redis-list-dto.d.ts +2 -2
- package/dist/models/json-result-equipment-detail-dto.d.ts +2 -2
- package/dist/models/json-result-equipment-search-system-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-result-dtoaccess-whitelist-application-batch-import-template-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-result-dtocalendar-export-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-result-dtodisaster-warning-standard-import-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-result-dtoequipment-excel-add-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-result-dtoinspection-standard-import-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-result-dtomaintenance-standard-import-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-result-dtosurveillance-batch-import-template-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-result-dtosurveillance-settings-export-dto.d.ts +2 -2
- package/dist/models/json-result-excel-import-upload-to-redis-vo-space-add-excel-dto.d.ts +2 -2
- package/dist/models/json-result-exploration-work-order-details-dto.d.ts +2 -2
- package/dist/models/json-result-file-dto.d.ts +2 -2
- package/dist/models/json-result-group-dept-vo.d.ts +2 -2
- package/dist/models/json-result-inspection-standard-entity.d.ts +2 -2
- package/dist/models/json-result-integer.d.ts +1 -1
- package/dist/models/json-result-ipage-energy-cost-record-info-vo.d.ts +62 -0
- package/dist/models/json-result-ipage-energy-cost-record-info-vo.js +15 -0
- package/dist/models/json-result-json-result-list-space-tree-dto.d.ts +2 -2
- package/dist/models/json-result-list-access-appointment-record-process-details-dto.d.ts +2 -2
- package/dist/models/json-result-list-access-company-config-entity.d.ts +2 -2
- package/dist/models/json-result-list-access-whitelist-application-process-details-dto.d.ts +2 -2
- package/dist/models/json-result-list-address-region-entity.d.ts +2 -2
- package/dist/models/json-result-list-applet-sys-user-drop-down-box-list-dto.d.ts +2 -2
- package/dist/models/json-result-list-area-park-dto.d.ts +2 -2
- package/dist/models/json-result-list-calendar-entity.d.ts +2 -2
- package/dist/models/json-result-list-center-list-dto.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-access-park-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-access-source-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-equipment-park-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-equipment-system-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-series-stats-base-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-surveillance-functional-area-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-surveillance-park-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-work-order-park-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-work-order-type-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-dashboard-work-order-type-subcategory-group-stats-vo.d.ts +2 -2
- package/dist/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.d.ts +62 -0
- package/dist/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.js +15 -0
- package/dist/models/json-result-list-energy-cost-month-setting-list-vo.d.ts +62 -0
- package/dist/models/json-result-list-energy-cost-month-setting-list-vo.js +15 -0
- package/dist/models/json-result-list-equipment-detail-dto.d.ts +2 -2
- package/dist/models/json-result-list-equipment-qr-code-dto.d.ts +2 -2
- package/dist/models/json-result-list-equipment-system-tree-dto.d.ts +2 -2
- package/dist/models/json-result-list-equipment-tree-dto.d.ts +2 -2
- package/dist/models/json-result-list-inspection-point.d.ts +2 -2
- package/dist/models/json-result-list-inspection-standard-entity.d.ts +2 -2
- package/dist/models/json-result-list-maintenance-standard-entity.d.ts +2 -2
- package/dist/models/json-result-list-park-list-dto.d.ts +2 -2
- package/dist/models/json-result-list-plan-calendar-list-vo.d.ts +2 -2
- package/dist/models/json-result-list-plan-calendar-vo.d.ts +2 -2
- package/dist/models/json-result-list-space-image-detail-dto.d.ts +2 -2
- package/dist/models/json-result-list-space-point-dto.d.ts +2 -2
- package/dist/models/json-result-list-space-qr-code-dto.d.ts +2 -2
- package/dist/models/json-result-list-space-tree-dto.d.ts +2 -2
- package/dist/models/json-result-list-space-url-dto.d.ts +2 -2
- package/dist/models/json-result-list-srm-center-vo.d.ts +2 -2
- package/dist/models/json-result-list-supplier-select-dto.d.ts +2 -2
- package/dist/models/json-result-list-surveillance-settings-coverage-standard-dto.d.ts +2 -2
- package/dist/models/json-result-list-sys-dept-drop-down-box-list-dto.d.ts +2 -2
- package/dist/models/json-result-list-sys-dept.d.ts +2 -2
- package/dist/models/json-result-list-sys-user-drop-down-box-list-dto.d.ts +2 -2
- package/dist/models/json-result-list-work-order-circulation-settings-entity.d.ts +2 -2
- package/dist/models/json-result-list-work-order-circulation-vo.d.ts +2 -2
- package/dist/models/json-result-list-work-order-comment-entity.d.ts +2 -2
- package/dist/models/json-result-list-work-order-dept-settings-entity.d.ts +2 -2
- package/dist/models/json-result-list-work-order-inspection-detail-dto.d.ts +2 -2
- package/dist/models/json-result-list-work-order-issue-type-settings-entity.d.ts +2 -2
- package/dist/models/json-result-list-work-order-push-settings-entity.d.ts +2 -2
- package/dist/models/json-result-list-work-order-spot-check-dto.d.ts +62 -0
- package/dist/models/json-result-list-work-order-spot-check-dto.js +15 -0
- package/dist/models/json-result-list-work-order-step-by-step-push-user-details-dto.d.ts +2 -2
- package/dist/models/json-result-list-work-order-type-settings-entity.d.ts +2 -2
- package/dist/models/json-result-maintenance-standard-entity.d.ts +2 -2
- package/dist/models/json-result-map-string-object.d.ts +63 -0
- package/dist/models/json-result-map-string-object.js +15 -0
- package/dist/models/json-result-monitoring-coverage-alert-work-order-details-dto.d.ts +2 -2
- package/dist/models/json-result-network-monitor-repair-details-dto.d.ts +2 -2
- package/dist/models/json-result-notice-entity.d.ts +2 -2
- package/dist/models/json-result-offline-alert-work-order-details-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-access-appointment-record-details-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-access-blacklist-details-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-access-record-summary-list-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-access-whitelist-application-details-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-admission-terms-record-list-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-disaster-warning-standard-entity.d.ts +2 -2
- package/dist/models/json-result-page-dto-equipment-search-system-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-inspection-standard-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-maintenance-standard-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-open-api-equipment-list-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-plan-search-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-supplier-contract-details-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-surveillance-details-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-sys-user-msg-dto.d.ts +2 -2
- package/dist/models/json-result-page-dto-work-order-group-equipment-dto.d.ts +62 -0
- package/dist/models/json-result-page-dto-work-order-group-equipment-dto.js +15 -0
- package/dist/models/json-result-page-dto-work-order-search-dto.d.ts +2 -2
- package/dist/models/json-result-park-info-dto.d.ts +2 -2
- package/dist/models/json-result-park-settings-details-dto.d.ts +2 -2
- package/dist/models/json-result-period-detail-resp.d.ts +2 -2
- package/dist/models/json-result-plan-detail-dto.d.ts +2 -2
- package/dist/models/json-result-space-add-redis-list-dto.d.ts +2 -2
- package/dist/models/json-result-space-image-detail-dto.d.ts +2 -2
- package/dist/models/json-result-srm-center-entity.d.ts +2 -2
- package/dist/models/json-result-string.d.ts +1 -1
- package/dist/models/json-result-supplier-contract-details-dto.d.ts +2 -2
- package/dist/models/json-result-supplier-entity.d.ts +2 -2
- package/dist/models/json-result-surveillance-count-dto.d.ts +2 -2
- package/dist/models/json-result-surveillance-details-dto.d.ts +2 -2
- package/dist/models/json-result-surveillance-live-dto.d.ts +2 -2
- package/dist/models/json-result-surveillance-settings-details-dto.d.ts +2 -2
- package/dist/models/json-result-surveillance-settings-polling-dto.d.ts +2 -2
- package/dist/models/json-result-switch-park-v2-dto.d.ts +2 -2
- package/dist/models/json-result-sys-dept.d.ts +2 -2
- package/dist/models/json-result-sys-user-msg-dto.d.ts +2 -2
- package/dist/models/json-result-sys-user.d.ts +2 -2
- package/dist/models/json-result-user-add-redis-list-vo.d.ts +2 -2
- package/dist/models/json-result-user-settings-entity.d.ts +2 -2
- package/dist/models/json-result-violation-work-order-details-dto.d.ts +2 -2
- package/dist/models/json-result-void.d.ts +1 -1
- package/dist/models/json-result-work-order-dept-settings-entity.d.ts +2 -2
- package/dist/models/json-result-work-order-detail-dto.d.ts +2 -2
- package/dist/models/json-result-work-order-issue-type-settings-entity.d.ts +2 -2
- package/dist/models/json-result.d.ts +1 -1
- package/dist/models/maintenance-history-dto.d.ts +20 -1
- package/dist/models/maintenance-standard-add-or-update-vo.d.ts +2 -2
- package/dist/models/maintenance-standard-dto.d.ts +2 -2
- package/dist/models/maintenance-standard-entity.d.ts +3 -3
- package/dist/models/monitoring-coverage-alert-info.d.ts +13 -1
- package/dist/models/monitoring-coverage-alert-process-vo.d.ts +1 -1
- package/dist/models/monitoring-coverage-alert-reason-enum.d.ts +2 -0
- package/dist/models/monitoring-coverage-alert-reason-enum.js +3 -1
- package/dist/models/monitoring-coverage-alert-work-order-details-dto.d.ts +7 -7
- package/dist/models/network-monitor-repair-add-vo.d.ts +3 -3
- package/dist/models/network-monitor-repair-details-dto.d.ts +14 -14
- package/dist/models/news-info.d.ts +1 -1
- package/dist/models/offline-alert-submit-vo.d.ts +1 -1
- package/dist/models/offline-alert-work-order-details-dto.d.ts +10 -10
- package/dist/models/offline-alert-work-order-info.d.ts +2 -2
- package/dist/models/offline-alert-work-order-vo.d.ts +1 -1
- package/dist/models/open-api-access-appointment-record-add-vo.d.ts +14 -7
- package/dist/models/open-api-access-appointment-record-delete-vo.d.ts +1 -1
- package/dist/models/open-api-equipment-list-dto.d.ts +2 -2
- package/dist/models/page-dto-access-appointment-record-details-dto.d.ts +1 -1
- package/dist/models/page-dto-access-blacklist-details-dto.d.ts +1 -1
- package/dist/models/page-dto-access-record-summary-list-dto.d.ts +1 -1
- package/dist/models/page-dto-access-whitelist-application-details-dto.d.ts +1 -1
- package/dist/models/page-dto-admission-terms-record-list-dto.d.ts +1 -1
- package/dist/models/page-dto-disaster-warning-standard-entity.d.ts +1 -1
- package/dist/models/page-dto-equipment-search-system-dto.d.ts +1 -1
- package/dist/models/page-dto-inspection-standard-dto.d.ts +1 -1
- package/dist/models/page-dto-maintenance-standard-dto.d.ts +1 -1
- package/dist/models/page-dto-open-api-equipment-list-dto.d.ts +1 -1
- package/dist/models/page-dto-plan-search-dto.d.ts +1 -1
- package/dist/models/page-dto-supplier-contract-details-dto.d.ts +1 -1
- package/dist/models/page-dto-surveillance-details-dto.d.ts +1 -1
- package/dist/models/page-dto-sys-user-msg-dto.d.ts +1 -1
- package/dist/models/page-dto-work-order-group-equipment-dto.d.ts +31 -0
- package/dist/models/page-dto-work-order-group-equipment-dto.js +15 -0
- package/dist/models/page-dto-work-order-search-dto.d.ts +1 -1
- package/dist/models/park-info-dto.d.ts +7 -1
- package/dist/models/park-info-edit-vo.d.ts +7 -1
- package/dist/models/park-list-dto.d.ts +13 -0
- package/dist/models/park.d.ts +1 -1
- package/dist/models/period-detail-resp.d.ts +12 -12
- package/dist/models/period-detail-resp.js +5 -5
- package/dist/models/plan-add-vo.d.ts +9 -9
- package/dist/models/plan-add-vo.js +5 -5
- package/dist/models/plan-calendar-list-vo.d.ts +5 -5
- package/dist/models/plan-calendar-list-vo.js +5 -5
- package/dist/models/plan-detail-dto.d.ts +9 -9
- package/dist/models/plan-detail-dto.js +5 -5
- package/dist/models/plan-edit-vo.d.ts +9 -9
- package/dist/models/plan-edit-vo.js +5 -5
- package/dist/models/plan-inspection-items-dto.d.ts +3 -3
- package/dist/models/plan-item-add-vo.d.ts +2 -2
- package/dist/models/plan-item-edit-vo.d.ts +2 -2
- package/dist/models/plan-search-dto.d.ts +9 -9
- package/dist/models/plan-search-dto.js +5 -5
- package/dist/models/pricing-item.d.ts +50 -0
- package/dist/models/pricing-item.js +23 -0
- package/dist/models/process-work-order-vo.d.ts +1 -1
- package/dist/models/safety-smart-fire-record-gizone-dto.d.ts +1 -1
- package/dist/models/save-period-work-order-detail-req.d.ts +1 -1
- package/dist/models/sms-captcha-vo.d.ts +1 -1
- package/dist/models/source-work-order-dto.d.ts +1 -1
- package/dist/models/source-work-order-inspection-dto.d.ts +1 -1
- package/dist/models/space-add-excel-dto.d.ts +0 -6
- package/dist/models/space-add-redis-list-dto.d.ts +1 -1
- package/dist/models/space-add-vo.d.ts +2 -2
- package/dist/models/space-detail-dto.d.ts +4 -4
- package/dist/models/space-edit-vo.d.ts +2 -2
- package/dist/models/space-image-detail-dto.d.ts +2 -2
- package/dist/models/space-tree-dto.d.ts +3 -3
- package/dist/models/space.d.ts +1 -1
- package/dist/models/srm-center-entity.d.ts +1 -1
- package/dist/models/srm-center-vo.d.ts +1 -1
- package/dist/models/srm-level-add-dto.d.ts +1 -1
- package/dist/models/sub-buttons.d.ts +1 -1
- package/dist/models/supplier-add-vo.d.ts +2 -2
- package/dist/models/supplier-edit-vo.d.ts +2 -2
- package/dist/models/supplier-entity.d.ts +2 -2
- package/dist/models/surveillance-batch-import-template-dto.d.ts +19 -7
- package/dist/models/surveillance-details-dto.d.ts +13 -7
- package/dist/models/surveillance-entity.d.ts +171 -0
- package/dist/models/surveillance-entity.js +15 -0
- package/dist/models/surveillance-settings-coverage-standard-dto.d.ts +1 -1
- package/dist/models/surveillance-settings-polling-dto.d.ts +2 -2
- package/dist/models/surveillance-settings-polling-vo.d.ts +2 -2
- package/dist/models/surveillance-update-vo.d.ts +8 -2
- package/dist/models/switch-pak-body-v2-vo.d.ts +1 -1
- package/dist/models/sync-equipment-status-vo.d.ts +1 -1
- package/dist/models/sync-equipment-vo.d.ts +1 -1
- package/dist/models/sys-user-info-dto.d.ts +3 -3
- package/dist/models/sys-user-msg-dto.d.ts +2 -2
- package/dist/models/sys-user.d.ts +4 -4
- package/dist/models/user-add-redis-list-vo.d.ts +1 -1
- package/dist/models/user-roles-and-permissions-dto.d.ts +1 -1
- package/dist/models/violation-decision-vo.d.ts +20 -2
- package/dist/models/violation-issue-type-enum.d.ts +1 -0
- package/dist/models/violation-issue-type-enum.js +2 -1
- package/dist/models/violation-work-order-add-vo.d.ts +10 -4
- package/dist/models/violation-work-order-details-dto.d.ts +12 -12
- package/dist/models/violation-work-order-info.d.ts +22 -4
- package/dist/models/work-order-add-vo.d.ts +3 -3
- package/dist/models/work-order-circulation-settings-add-or-update-vo.d.ts +2 -2
- package/dist/models/work-order-circulation-settings-entity.d.ts +2 -2
- package/dist/models/work-order-circulation-vo.d.ts +1 -1
- package/dist/models/work-order-decision-vo.d.ts +2 -2
- package/dist/models/work-order-dept-settings-entity.d.ts +1 -1
- package/dist/models/work-order-detail-dto.d.ts +14 -14
- package/dist/models/work-order-ext-data.d.ts +5 -5
- package/dist/models/work-order-group-equipment-dto.d.ts +167 -0
- package/dist/models/work-order-group-equipment-dto.js +21 -0
- package/dist/models/work-order-group-equipment-dtoinspection-item.d.ts +36 -0
- package/dist/models/work-order-group-equipment-dtoinspection-item.js +15 -0
- package/dist/models/work-order-handler-dto.d.ts +1 -1
- package/dist/models/work-order-internal-status-enum.d.ts +1 -0
- package/dist/models/work-order-internal-status-enum.js +1 -0
- package/dist/models/work-order-issue-type-settings-add-or-update-vo.d.ts +2 -2
- package/dist/models/work-order-issue-type-settings-entity.d.ts +2 -2
- package/dist/models/work-order-msg-remind-config-info.d.ts +2 -2
- package/dist/models/work-order-push-settings-entity.d.ts +1 -1
- package/dist/models/work-order-push-settings-save-or-update-vo.d.ts +1 -1
- package/dist/models/work-order-push-settings-vo.d.ts +1 -1
- package/dist/models/work-order-report-vo.d.ts +3 -3
- package/dist/models/work-order-search-dto.d.ts +7 -7
- package/dist/models/work-order-spot-check-dto.d.ts +22 -22
- package/dist/models/work-order-spot-check-dto.js +8 -8
- package/dist/models/work-order-staging-data-vo.d.ts +1 -1
- package/dist/models/work-order-submit-vo.d.ts +2 -2
- package/dist/models/work-order-type-msg-remind-config-add-or-update-vo.d.ts +2 -2
- package/dist/models/work-order-type-settings-entity.d.ts +2 -2
- package/dist/models/wx-ma-user-info.d.ts +1 -1
- package/dist/models/wx-menu.d.ts +2 -2
- package/dist/models/wx-mp-conditional-menu.d.ts +2 -2
- package/dist/models/wx-mp-get-self-menu-info-result.d.ts +1 -1
- package/dist/models/wx-mp-menu.d.ts +1 -1
- package/dist/models/wx-mp-self-menu-button.d.ts +2 -2
- package/dist/models/wx-mp-self-menu-info.d.ts +1 -1
- package/models/access-abnormal-type-enum.ts +2 -2
- package/models/access-appointment-record-add-vo.ts +17 -8
- package/models/access-appointment-record-details-dto.ts +20 -11
- package/models/access-appointment-record-process-approval-user-dto.ts +1 -1
- package/models/access-appointment-record-process-details-dto.ts +12 -6
- package/models/access-approval-config-vo.ts +2 -2
- package/models/access-blacklist-add-vo.ts +6 -0
- package/models/access-blacklist-details-dto.ts +6 -0
- package/models/access-blacklist-update-vo.ts +6 -0
- package/models/access-company-config-entity.ts +1 -1
- package/models/access-config-entity.ts +7 -1
- package/models/access-config-vo.ts +7 -1
- package/models/access-record-details-dto.ts +9 -9
- package/models/access-record-summary-details-dto.ts +14 -8
- package/models/access-record-summary-list-dto.ts +13 -7
- package/models/access-vehicle-length-enum.ts +6 -6
- package/models/access-visitor-person-type-config-vo.ts +3 -3
- package/models/access-whitelist-application-add-vo.ts +4 -4
- package/models/access-whitelist-application-batch-import-template-dto.ts +9 -3
- package/models/access-whitelist-application-details-dto.ts +6 -6
- package/models/access-whitelist-application-process-details-dto.ts +12 -6
- package/models/access-whitelist-application-update-vo.ts +1 -1
- package/models/app-login-wx-chat-dto.ts +1 -1
- package/models/area-park-dto.ts +1 -1
- package/models/base-error-result.ts +1 -1
- package/models/calendar-entity.ts +1 -1
- package/models/center-list-dto.ts +1 -1
- package/models/cuser-info.ts +1 -1
- package/models/dashboard-access-search-dto.ts +15 -3
- package/models/dashboard-access-source-group-stats-vo.ts +1 -1
- package/models/dashboard-base-search-dto.ts +12 -0
- package/models/dashboard-equipment-park-group-stats-vo.ts +1 -1
- package/models/dashboard-equipment-search-dto.ts +12 -0
- package/models/dashboard-equipment-system-group-stats-vo.ts +1 -1
- package/models/dashboard-park-statistics-vo.ts +42 -0
- package/models/dashboard-surveillance-functional-area-group-stats-vo.ts +7 -1
- package/models/dashboard-surveillance-park-group-stats-vo.ts +18 -0
- package/models/dashboard-surveillance-search-dto.ts +13 -1
- package/models/dashboard-work-order-by-park-search-dto.ts +17 -11
- package/models/dashboard-work-order-by-work-order-type-search-dto.ts +14 -8
- package/models/dashboard-work-order-by-work-order-type-subcategory-search-dto.ts +19 -1
- package/models/dashboard-work-order-issue-type-group-stats-vo.ts +1 -1
- package/models/dashboard-work-order-list-search-dto.ts +22 -16
- package/models/dashboard-work-order-type-group-stats-vo.ts +2 -2
- package/models/dashboard-work-order-type-subcategory-group-stats-vo.ts +1 -1
- package/models/dept-relation-dto.ts +2 -2
- package/models/dept-relation.ts +2 -2
- package/models/disaster-warning-standard-add-or-update-vo.ts +1 -1
- package/models/disaster-warning-standard-entity.ts +1 -1
- package/models/disaster-warning-standard-import-dto.ts +1 -1
- package/models/emission-standard-enum.ts +32 -0
- package/models/energy-cost-add-record-dto.ts +183 -0
- package/models/energy-cost-add-setting-dto.ts +33 -0
- package/models/energy-cost-add-setting-dtopark-setting-item.ts +52 -0
- package/models/energy-cost-add-setting-dtopark-setting.ts +53 -0
- package/models/energy-cost-edit-record-dto.ts +189 -0
- package/models/energy-cost-month-setting-list-summary-standards-vo.ts +106 -0
- package/models/energy-cost-month-setting-list-vo.ts +116 -0
- package/models/energy-cost-record-bill-info-vo.ts +54 -0
- package/models/energy-cost-record-info-not-emun-vo.ts +213 -0
- package/models/energy-cost-record-info-vo.ts +246 -0
- package/models/energy-cost-scenarios-info-not-enum-vo.ts +126 -0
- package/models/energy-cost-scenarios-info-vo.ts +153 -0
- package/models/energy-cost-setting-delete-dto.ts +50 -0
- package/models/energy-cost-setting-summy-add-dto.ts +50 -0
- package/models/energy-cost-setting-summy-update-dto.ts +36 -0
- package/models/energy-cost-update-setting-dto.ts +52 -0
- package/models/equipment-add-redis-list-dto.ts +1 -1
- package/models/equipment-detail-dto.ts +2 -2
- package/models/equipment-edit-batch-vo.ts +1 -1
- package/models/equipment-edit-vo.ts +2 -2
- package/models/equipment-search-system-dto.ts +3 -3
- package/models/equipment-search-vo.ts +1 -1
- package/models/equipment-status-stats-vo.ts +1 -1
- package/models/equipment-tree-details-dto.ts +2 -2
- package/models/equipment-tree-dto.ts +1 -1
- package/models/excel-import-result-dtoaccess-whitelist-application-batch-import-template-dto.ts +1 -1
- package/models/excel-import-result-dtocalendar-export-dto.ts +1 -1
- package/models/excel-import-result-dtodisaster-warning-standard-import-dto.ts +1 -1
- package/models/excel-import-result-dtoequipment-excel-add-dto.ts +1 -1
- package/models/excel-import-result-dtoinspection-standard-import-dto.ts +1 -1
- package/models/excel-import-result-dtomaintenance-standard-import-dto.ts +1 -1
- package/models/excel-import-result-dtosurveillance-batch-import-template-dto.ts +1 -1
- package/models/excel-import-result-dtosurveillance-settings-export-dto.ts +1 -1
- package/models/excel-import-upload-to-redis-vo-space-add-excel-dto.ts +1 -1
- package/models/exploration-work-order-add-vo.ts +3 -3
- package/models/exploration-work-order-details-dto.ts +9 -9
- package/models/exploration-work-order-info.ts +2 -2
- package/models/followup-work-order-dto.ts +1 -1
- package/models/group-dept-vo.ts +1 -1
- package/models/index.ts +36 -1
- package/models/inspection-handle-req.ts +1 -1
- package/models/inspection-point-item.ts +1 -1
- package/models/inspection-point.ts +16 -1
- package/models/inspection-standard-add-or-update-vo.ts +4 -4
- package/models/inspection-standard-dto.ts +4 -4
- package/models/inspection-standard-entity.ts +5 -5
- package/models/inspection-standard-import-dto.ts +2 -2
- package/models/insurance-work-order-issue-vo.ts +1 -1
- package/models/insurance-work-order-vo.ts +1 -1
- package/models/iot-device-unit-delete-dto.ts +48 -0
- package/models/ipage-energy-cost-record-info-vo.ts +70 -0
- package/models/item.ts +87 -0
- package/models/json-result-access-appointment-record-details-dto.ts +2 -2
- package/models/json-result-access-blacklist-details-dto.ts +2 -2
- package/models/json-result-access-company-config-entity.ts +2 -2
- package/models/json-result-access-config-entity.ts +2 -2
- package/models/json-result-access-record-summary-details-dto.ts +2 -2
- package/models/json-result-access-whitelist-application-details-dto.ts +2 -2
- package/models/json-result-admission-terms-record-details-dto.ts +2 -2
- package/models/json-result-applet-user-type-dto.ts +2 -2
- package/models/json-result-big-decimal.ts +1 -1
- package/models/json-result-boolean.ts +1 -1
- package/models/json-result-calendar-entity.ts +2 -2
- package/models/json-result-dashboard-park-statistics-vo.ts +72 -0
- package/models/json-result-disaster-warning-standard-entity.ts +2 -2
- package/models/json-result-energy-cost-record-bill-info-vo.ts +72 -0
- package/models/json-result-energy-cost-record-info-not-emun-vo.ts +72 -0
- package/models/{json-result-work-order-spot-check-dto.ts → json-result-energy-cost-record-info-vo.ts} +13 -13
- package/models/json-result-equipment-add-redis-list-dto.ts +2 -2
- package/models/json-result-equipment-detail-dto.ts +2 -2
- package/models/json-result-equipment-search-system-dto.ts +2 -2
- package/models/json-result-excel-import-result-dtoaccess-whitelist-application-batch-import-template-dto.ts +2 -2
- package/models/json-result-excel-import-result-dtocalendar-export-dto.ts +2 -2
- package/models/json-result-excel-import-result-dtodisaster-warning-standard-import-dto.ts +2 -2
- package/models/json-result-excel-import-result-dtoequipment-excel-add-dto.ts +2 -2
- package/models/json-result-excel-import-result-dtoinspection-standard-import-dto.ts +2 -2
- package/models/json-result-excel-import-result-dtomaintenance-standard-import-dto.ts +2 -2
- package/models/json-result-excel-import-result-dtosurveillance-batch-import-template-dto.ts +2 -2
- package/models/json-result-excel-import-result-dtosurveillance-settings-export-dto.ts +2 -2
- package/models/json-result-excel-import-upload-to-redis-vo-space-add-excel-dto.ts +2 -2
- package/models/json-result-exploration-work-order-details-dto.ts +2 -2
- package/models/json-result-file-dto.ts +2 -2
- package/models/json-result-group-dept-vo.ts +2 -2
- package/models/json-result-inspection-standard-entity.ts +2 -2
- package/models/json-result-integer.ts +1 -1
- package/models/json-result-ipage-energy-cost-record-info-vo.ts +72 -0
- package/models/json-result-json-result-list-space-tree-dto.ts +2 -2
- package/models/json-result-list-access-appointment-record-process-details-dto.ts +2 -2
- package/models/json-result-list-access-company-config-entity.ts +2 -2
- package/models/json-result-list-access-whitelist-application-process-details-dto.ts +2 -2
- package/models/json-result-list-address-region-entity.ts +2 -2
- package/models/json-result-list-applet-sys-user-drop-down-box-list-dto.ts +2 -2
- package/models/json-result-list-area-park-dto.ts +2 -2
- package/models/json-result-list-calendar-entity.ts +2 -2
- package/models/json-result-list-center-list-dto.ts +2 -2
- package/models/json-result-list-dashboard-access-park-group-stats-vo.ts +2 -2
- package/models/json-result-list-dashboard-access-source-group-stats-vo.ts +2 -2
- package/models/json-result-list-dashboard-equipment-park-group-stats-vo.ts +2 -2
- package/models/json-result-list-dashboard-equipment-system-group-stats-vo.ts +2 -2
- package/models/json-result-list-dashboard-series-stats-base-vo.ts +2 -2
- package/models/json-result-list-dashboard-surveillance-functional-area-group-stats-vo.ts +2 -2
- package/models/json-result-list-dashboard-surveillance-park-group-stats-vo.ts +2 -2
- package/models/json-result-list-dashboard-work-order-park-group-stats-vo.ts +2 -2
- package/models/json-result-list-dashboard-work-order-type-group-stats-vo.ts +2 -2
- package/models/json-result-list-dashboard-work-order-type-subcategory-group-stats-vo.ts +2 -2
- package/models/json-result-list-energy-cost-month-setting-list-summary-standards-vo.ts +72 -0
- package/models/json-result-list-energy-cost-month-setting-list-vo.ts +72 -0
- package/models/json-result-list-equipment-detail-dto.ts +2 -2
- package/models/json-result-list-equipment-qr-code-dto.ts +2 -2
- package/models/json-result-list-equipment-system-tree-dto.ts +2 -2
- package/models/json-result-list-equipment-tree-dto.ts +2 -2
- package/models/json-result-list-inspection-point.ts +2 -2
- package/models/json-result-list-inspection-standard-entity.ts +2 -2
- package/models/json-result-list-maintenance-standard-entity.ts +2 -2
- package/models/json-result-list-park-list-dto.ts +2 -2
- package/models/json-result-list-plan-calendar-list-vo.ts +2 -2
- package/models/json-result-list-plan-calendar-vo.ts +2 -2
- package/models/json-result-list-space-image-detail-dto.ts +2 -2
- package/models/json-result-list-space-point-dto.ts +2 -2
- package/models/json-result-list-space-qr-code-dto.ts +2 -2
- package/models/json-result-list-space-tree-dto.ts +2 -2
- package/models/json-result-list-space-url-dto.ts +2 -2
- package/models/json-result-list-srm-center-vo.ts +2 -2
- package/models/json-result-list-supplier-select-dto.ts +2 -2
- package/models/json-result-list-surveillance-settings-coverage-standard-dto.ts +2 -2
- package/models/json-result-list-sys-dept-drop-down-box-list-dto.ts +2 -2
- package/models/json-result-list-sys-dept.ts +2 -2
- package/models/json-result-list-sys-user-drop-down-box-list-dto.ts +2 -2
- package/models/json-result-list-work-order-circulation-settings-entity.ts +2 -2
- package/models/json-result-list-work-order-circulation-vo.ts +2 -2
- package/models/json-result-list-work-order-comment-entity.ts +2 -2
- package/models/json-result-list-work-order-dept-settings-entity.ts +2 -2
- package/models/json-result-list-work-order-inspection-detail-dto.ts +2 -2
- package/models/json-result-list-work-order-issue-type-settings-entity.ts +2 -2
- package/models/json-result-list-work-order-push-settings-entity.ts +2 -2
- package/models/json-result-list-work-order-spot-check-dto.ts +72 -0
- package/models/json-result-list-work-order-step-by-step-push-user-details-dto.ts +2 -2
- package/models/json-result-list-work-order-type-settings-entity.ts +2 -2
- package/models/json-result-maintenance-standard-entity.ts +2 -2
- package/models/json-result-map-string-object.ts +69 -0
- package/models/json-result-monitoring-coverage-alert-work-order-details-dto.ts +2 -2
- package/models/json-result-network-monitor-repair-details-dto.ts +2 -2
- package/models/json-result-notice-entity.ts +2 -2
- package/models/json-result-offline-alert-work-order-details-dto.ts +2 -2
- package/models/json-result-page-dto-access-appointment-record-details-dto.ts +2 -2
- package/models/json-result-page-dto-access-blacklist-details-dto.ts +2 -2
- package/models/json-result-page-dto-access-record-summary-list-dto.ts +2 -2
- package/models/json-result-page-dto-access-whitelist-application-details-dto.ts +2 -2
- package/models/json-result-page-dto-admission-terms-record-list-dto.ts +2 -2
- package/models/json-result-page-dto-disaster-warning-standard-entity.ts +2 -2
- package/models/json-result-page-dto-equipment-search-system-dto.ts +2 -2
- package/models/json-result-page-dto-inspection-standard-dto.ts +2 -2
- package/models/json-result-page-dto-maintenance-standard-dto.ts +2 -2
- package/models/json-result-page-dto-open-api-equipment-list-dto.ts +2 -2
- package/models/json-result-page-dto-plan-search-dto.ts +2 -2
- package/models/json-result-page-dto-supplier-contract-details-dto.ts +2 -2
- package/models/json-result-page-dto-surveillance-details-dto.ts +2 -2
- package/models/json-result-page-dto-sys-user-msg-dto.ts +2 -2
- package/models/json-result-page-dto-work-order-group-equipment-dto.ts +72 -0
- package/models/json-result-page-dto-work-order-search-dto.ts +2 -2
- package/models/json-result-park-info-dto.ts +2 -2
- package/models/json-result-park-settings-details-dto.ts +2 -2
- package/models/json-result-period-detail-resp.ts +2 -2
- package/models/json-result-plan-detail-dto.ts +2 -2
- package/models/json-result-space-add-redis-list-dto.ts +2 -2
- package/models/json-result-space-image-detail-dto.ts +2 -2
- package/models/json-result-srm-center-entity.ts +2 -2
- package/models/json-result-string.ts +1 -1
- package/models/json-result-supplier-contract-details-dto.ts +2 -2
- package/models/json-result-supplier-entity.ts +2 -2
- package/models/json-result-surveillance-count-dto.ts +2 -2
- package/models/json-result-surveillance-details-dto.ts +2 -2
- package/models/json-result-surveillance-live-dto.ts +2 -2
- package/models/json-result-surveillance-settings-details-dto.ts +2 -2
- package/models/json-result-surveillance-settings-polling-dto.ts +2 -2
- package/models/json-result-switch-park-v2-dto.ts +2 -2
- package/models/json-result-sys-dept.ts +2 -2
- package/models/json-result-sys-user-msg-dto.ts +2 -2
- package/models/json-result-sys-user.ts +2 -2
- package/models/json-result-user-add-redis-list-vo.ts +2 -2
- package/models/json-result-user-settings-entity.ts +2 -2
- package/models/json-result-violation-work-order-details-dto.ts +2 -2
- package/models/json-result-void.ts +1 -1
- package/models/json-result-work-order-dept-settings-entity.ts +2 -2
- package/models/json-result-work-order-detail-dto.ts +2 -2
- package/models/json-result-work-order-issue-type-settings-entity.ts +2 -2
- package/models/json-result.ts +1 -1
- package/models/maintenance-history-dto.ts +22 -1
- package/models/maintenance-standard-add-or-update-vo.ts +2 -2
- package/models/maintenance-standard-dto.ts +2 -2
- package/models/maintenance-standard-entity.ts +3 -3
- package/models/monitoring-coverage-alert-info.ts +13 -1
- package/models/monitoring-coverage-alert-process-vo.ts +1 -1
- package/models/monitoring-coverage-alert-reason-enum.ts +3 -1
- package/models/monitoring-coverage-alert-work-order-details-dto.ts +7 -7
- package/models/network-monitor-repair-add-vo.ts +3 -3
- package/models/network-monitor-repair-details-dto.ts +14 -14
- package/models/news-info.ts +1 -1
- package/models/offline-alert-submit-vo.ts +1 -1
- package/models/offline-alert-work-order-details-dto.ts +10 -10
- package/models/offline-alert-work-order-info.ts +2 -2
- package/models/offline-alert-work-order-vo.ts +1 -1
- package/models/open-api-access-appointment-record-add-vo.ts +16 -7
- package/models/open-api-access-appointment-record-delete-vo.ts +1 -1
- package/models/open-api-equipment-list-dto.ts +2 -2
- package/models/page-dto-access-appointment-record-details-dto.ts +1 -1
- package/models/page-dto-access-blacklist-details-dto.ts +1 -1
- package/models/page-dto-access-record-summary-list-dto.ts +1 -1
- package/models/page-dto-access-whitelist-application-details-dto.ts +1 -1
- package/models/page-dto-admission-terms-record-list-dto.ts +1 -1
- package/models/page-dto-disaster-warning-standard-entity.ts +1 -1
- package/models/page-dto-equipment-search-system-dto.ts +1 -1
- package/models/page-dto-inspection-standard-dto.ts +1 -1
- package/models/page-dto-maintenance-standard-dto.ts +1 -1
- package/models/page-dto-open-api-equipment-list-dto.ts +1 -1
- package/models/page-dto-plan-search-dto.ts +1 -1
- package/models/page-dto-supplier-contract-details-dto.ts +1 -1
- package/models/page-dto-surveillance-details-dto.ts +1 -1
- package/models/page-dto-sys-user-msg-dto.ts +1 -1
- package/models/page-dto-work-order-group-equipment-dto.ts +39 -0
- package/models/page-dto-work-order-search-dto.ts +1 -1
- package/models/park-info-dto.ts +7 -1
- package/models/park-info-edit-vo.ts +7 -1
- package/models/park-list-dto.ts +17 -0
- package/models/park.ts +1 -1
- package/models/period-detail-resp.ts +12 -12
- package/models/plan-add-vo.ts +9 -9
- package/models/plan-calendar-list-vo.ts +5 -5
- package/models/plan-detail-dto.ts +9 -9
- package/models/plan-edit-vo.ts +9 -9
- package/models/plan-inspection-items-dto.ts +3 -3
- package/models/plan-item-add-vo.ts +2 -2
- package/models/plan-item-edit-vo.ts +2 -2
- package/models/plan-search-dto.ts +9 -9
- package/models/pricing-item.ts +59 -0
- package/models/process-work-order-vo.ts +1 -1
- package/models/safety-smart-fire-record-gizone-dto.ts +1 -1
- package/models/save-period-work-order-detail-req.ts +1 -1
- package/models/sms-captcha-vo.ts +1 -1
- package/models/source-work-order-dto.ts +1 -1
- package/models/source-work-order-inspection-dto.ts +1 -1
- package/models/space-add-excel-dto.ts +0 -6
- package/models/space-add-redis-list-dto.ts +1 -1
- package/models/space-add-vo.ts +2 -2
- package/models/space-detail-dto.ts +4 -4
- package/models/space-edit-vo.ts +2 -2
- package/models/space-image-detail-dto.ts +2 -2
- package/models/space-tree-dto.ts +3 -3
- package/models/space.ts +1 -1
- package/models/srm-center-entity.ts +1 -1
- package/models/srm-center-vo.ts +1 -1
- package/models/srm-level-add-dto.ts +1 -1
- package/models/sub-buttons.ts +1 -1
- package/models/supplier-add-vo.ts +2 -2
- package/models/supplier-edit-vo.ts +2 -2
- package/models/supplier-entity.ts +2 -2
- package/models/surveillance-batch-import-template-dto.ts +19 -7
- package/models/surveillance-details-dto.ts +13 -7
- package/models/surveillance-entity.ts +185 -0
- package/models/surveillance-settings-coverage-standard-dto.ts +1 -1
- package/models/surveillance-settings-polling-dto.ts +2 -2
- package/models/surveillance-settings-polling-vo.ts +2 -2
- package/models/surveillance-update-vo.ts +8 -2
- package/models/switch-pak-body-v2-vo.ts +1 -1
- package/models/sync-equipment-status-vo.ts +1 -1
- package/models/sync-equipment-vo.ts +1 -1
- package/models/sys-user-info-dto.ts +3 -3
- package/models/sys-user-msg-dto.ts +2 -2
- package/models/sys-user.ts +4 -4
- package/models/user-add-redis-list-vo.ts +1 -1
- package/models/user-roles-and-permissions-dto.ts +1 -1
- package/models/violation-decision-vo.ts +20 -2
- package/models/violation-issue-type-enum.ts +2 -1
- package/models/violation-work-order-add-vo.ts +10 -4
- package/models/violation-work-order-details-dto.ts +12 -12
- package/models/violation-work-order-info.ts +22 -4
- package/models/work-order-add-vo.ts +3 -3
- package/models/work-order-circulation-settings-add-or-update-vo.ts +2 -2
- package/models/work-order-circulation-settings-entity.ts +2 -2
- package/models/work-order-circulation-vo.ts +1 -1
- package/models/work-order-decision-vo.ts +2 -2
- package/models/work-order-dept-settings-entity.ts +1 -1
- package/models/work-order-detail-dto.ts +14 -14
- package/models/work-order-ext-data.ts +5 -5
- package/models/work-order-group-equipment-dto.ts +186 -0
- package/models/work-order-group-equipment-dtoinspection-item.ts +42 -0
- package/models/work-order-handler-dto.ts +1 -1
- package/models/work-order-internal-status-enum.ts +1 -0
- package/models/work-order-issue-type-settings-add-or-update-vo.ts +2 -2
- package/models/work-order-issue-type-settings-entity.ts +2 -2
- package/models/work-order-msg-remind-config-info.ts +2 -2
- package/models/work-order-push-settings-entity.ts +1 -1
- package/models/work-order-push-settings-save-or-update-vo.ts +1 -1
- package/models/work-order-push-settings-vo.ts +1 -1
- package/models/work-order-report-vo.ts +3 -3
- package/models/work-order-search-dto.ts +7 -7
- package/models/work-order-spot-check-dto.ts +23 -23
- package/models/work-order-staging-data-vo.ts +1 -1
- package/models/work-order-submit-vo.ts +2 -2
- package/models/work-order-type-msg-remind-config-add-or-update-vo.ts +2 -2
- package/models/work-order-type-settings-entity.ts +2 -2
- package/models/wx-ma-user-info.ts +1 -1
- package/models/wx-menu.ts +2 -2
- package/models/wx-mp-conditional-menu.ts +2 -2
- package/models/wx-mp-get-self-menu-info-result.ts +1 -1
- package/models/wx-mp-menu.ts +1 -1
- package/models/wx-mp-self-menu-button.ts +2 -2
- package/models/wx-mp-self-menu-info.ts +1 -1
- package/package.json +4 -4
- /package/dist/esm/models/{json-result-work-order-spot-check-dto.js → dashboard-park-statistics-vo.js} +0 -0
- /package/dist/models/{json-result-work-order-spot-check-dto.js → dashboard-park-statistics-vo.js} +0 -0
|
@@ -38,7 +38,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
38
38
|
* @param {*} [options] Override http request option.
|
|
39
39
|
* @throws {RequiredError}
|
|
40
40
|
*/
|
|
41
|
-
_export: (
|
|
41
|
+
_export: (user, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
42
42
|
// verify required parameter 'user' is not null or undefined
|
|
43
43
|
assertParamExists('_export', 'user', user);
|
|
44
44
|
const localVarPath = `/system/user/export`;
|
|
@@ -73,7 +73,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
73
73
|
* @param {*} [options] Override http request option.
|
|
74
74
|
* @throws {RequiredError}
|
|
75
75
|
*/
|
|
76
|
-
add: (
|
|
76
|
+
add: (sysUser, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
77
77
|
// verify required parameter 'sysUser' is not null or undefined
|
|
78
78
|
assertParamExists('add', 'sysUser', sysUser);
|
|
79
79
|
const localVarPath = `/system/user`;
|
|
@@ -107,7 +107,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
107
107
|
* @param {*} [options] Override http request option.
|
|
108
108
|
* @throws {RequiredError}
|
|
109
109
|
*/
|
|
110
|
-
addOrUpdate: (
|
|
110
|
+
addOrUpdate: (keyConfig, userSettingsUpdateBO, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
111
111
|
// verify required parameter 'keyConfig' is not null or undefined
|
|
112
112
|
assertParamExists('addOrUpdate', 'keyConfig', keyConfig);
|
|
113
113
|
// verify required parameter 'userSettingsUpdateBO' is not null or undefined
|
|
@@ -142,7 +142,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
142
142
|
* @param {*} [options] Override http request option.
|
|
143
143
|
* @throws {RequiredError}
|
|
144
144
|
*/
|
|
145
|
-
appRevokePrivacy: (
|
|
145
|
+
appRevokePrivacy: (uuid, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
146
146
|
// verify required parameter 'uuid' is not null or undefined
|
|
147
147
|
assertParamExists('appRevokePrivacy', 'uuid', uuid);
|
|
148
148
|
const localVarPath = `/system/user/app/revoke/privacy`;
|
|
@@ -176,7 +176,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
176
176
|
* @param {*} [options] Override http request option.
|
|
177
177
|
* @throws {RequiredError}
|
|
178
178
|
*/
|
|
179
|
-
authRole: (
|
|
179
|
+
authRole: (userId, parkId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
180
180
|
// verify required parameter 'userId' is not null or undefined
|
|
181
181
|
assertParamExists('authRole', 'userId', userId);
|
|
182
182
|
// verify required parameter 'parkId' is not null or undefined
|
|
@@ -210,7 +210,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
210
210
|
* @param {*} [options] Override http request option.
|
|
211
211
|
* @throws {RequiredError}
|
|
212
212
|
*/
|
|
213
|
-
avatar: (
|
|
213
|
+
avatar: (avatarfile, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
214
214
|
// verify required parameter 'avatarfile' is not null or undefined
|
|
215
215
|
assertParamExists('avatar', 'avatarfile', avatarfile);
|
|
216
216
|
const localVarPath = `/system/user/profile/avatar`;
|
|
@@ -247,7 +247,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
247
247
|
* @param {*} [options] Override http request option.
|
|
248
248
|
* @throws {RequiredError}
|
|
249
249
|
*/
|
|
250
|
-
bindPrivacy: (
|
|
250
|
+
bindPrivacy: (uuid, privacyType, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
251
251
|
// verify required parameter 'uuid' is not null or undefined
|
|
252
252
|
assertParamExists('bindPrivacy', 'uuid', uuid);
|
|
253
253
|
// verify required parameter 'privacyType' is not null or undefined
|
|
@@ -286,7 +286,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
286
286
|
* @param {*} [options] Override http request option.
|
|
287
287
|
* @throws {RequiredError}
|
|
288
288
|
*/
|
|
289
|
-
changePassword: (
|
|
289
|
+
changePassword: (changePasswordDto, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
290
290
|
// verify required parameter 'changePasswordDto' is not null or undefined
|
|
291
291
|
assertParamExists('changePassword', 'changePasswordDto', changePasswordDto);
|
|
292
292
|
const localVarPath = `/system/user/changePassword`;
|
|
@@ -318,7 +318,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
318
318
|
* @param {*} [options] Override http request option.
|
|
319
319
|
* @throws {RequiredError}
|
|
320
320
|
*/
|
|
321
|
-
changeStatus: (
|
|
321
|
+
changeStatus: (sysUser, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
322
322
|
// verify required parameter 'sysUser' is not null or undefined
|
|
323
323
|
assertParamExists('changeStatus', 'sysUser', sysUser);
|
|
324
324
|
const localVarPath = `/system/user/changeStatus`;
|
|
@@ -351,7 +351,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
351
351
|
* @param {*} [options] Override http request option.
|
|
352
352
|
* @throws {RequiredError}
|
|
353
353
|
*/
|
|
354
|
-
delUser: (
|
|
354
|
+
delUser: (delUserVO, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
355
355
|
// verify required parameter 'delUserVO' is not null or undefined
|
|
356
356
|
assertParamExists('delUser', 'delUserVO', delUserVO);
|
|
357
357
|
const localVarPath = `/system/user/del/user`;
|
|
@@ -383,7 +383,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
383
383
|
* @param {*} [options] Override http request option.
|
|
384
384
|
* @throws {RequiredError}
|
|
385
385
|
*/
|
|
386
|
-
edit: (
|
|
386
|
+
edit: (sysUser, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
387
387
|
// verify required parameter 'sysUser' is not null or undefined
|
|
388
388
|
assertParamExists('edit', 'sysUser', sysUser);
|
|
389
389
|
const localVarPath = `/system/user`;
|
|
@@ -415,7 +415,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
415
415
|
* @param {*} [options] Override http request option.
|
|
416
416
|
* @throws {RequiredError}
|
|
417
417
|
*/
|
|
418
|
-
getUserInfo: (
|
|
418
|
+
getUserInfo: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
419
419
|
const localVarPath = `/system/user/getUserInfo`;
|
|
420
420
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
421
421
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -444,7 +444,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
444
444
|
* @param {*} [options] Override http request option.
|
|
445
445
|
* @throws {RequiredError}
|
|
446
446
|
*/
|
|
447
|
-
importData: (
|
|
447
|
+
importData: (file, updateSupport, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
448
448
|
// verify required parameter 'file' is not null or undefined
|
|
449
449
|
assertParamExists('importData', 'file', file);
|
|
450
450
|
// verify required parameter 'updateSupport' is not null or undefined
|
|
@@ -481,7 +481,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
481
481
|
* @param {*} [options] Override http request option.
|
|
482
482
|
* @throws {RequiredError}
|
|
483
483
|
*/
|
|
484
|
-
importTemplate: (
|
|
484
|
+
importTemplate: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
485
485
|
const localVarPath = `/system/user/importTemplate`;
|
|
486
486
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
487
487
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -510,7 +510,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
510
510
|
* @param {*} [options] Override http request option.
|
|
511
511
|
* @throws {RequiredError}
|
|
512
512
|
*/
|
|
513
|
-
insertAuthRole: (
|
|
513
|
+
insertAuthRole: (userId, roleIds, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
514
514
|
// verify required parameter 'userId' is not null or undefined
|
|
515
515
|
assertParamExists('insertAuthRole', 'userId', userId);
|
|
516
516
|
// verify required parameter 'roleIds' is not null or undefined
|
|
@@ -548,7 +548,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
548
548
|
* @param {*} [options] Override http request option.
|
|
549
549
|
* @throws {RequiredError}
|
|
550
550
|
*/
|
|
551
|
-
list: (
|
|
551
|
+
list: (user, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
552
552
|
// verify required parameter 'user' is not null or undefined
|
|
553
553
|
assertParamExists('list', 'user', user);
|
|
554
554
|
const localVarPath = `/system/user/list`;
|
|
@@ -584,7 +584,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
584
584
|
* @param {*} [options] Override http request option.
|
|
585
585
|
* @throws {RequiredError}
|
|
586
586
|
*/
|
|
587
|
-
listUserByDept: (
|
|
587
|
+
listUserByDept: (parkId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
588
588
|
// verify required parameter 'parkId' is not null or undefined
|
|
589
589
|
assertParamExists('listUserByDept', 'parkId', parkId);
|
|
590
590
|
const localVarPath = `/system/user/getAppletSysUserDropDownBoxList`;
|
|
@@ -616,7 +616,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
616
616
|
* @param {*} [options] Override http request option.
|
|
617
617
|
* @throws {RequiredError}
|
|
618
618
|
*/
|
|
619
|
-
profile: (
|
|
619
|
+
profile: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
620
620
|
const localVarPath = `/system/user/profile`;
|
|
621
621
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
622
622
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -644,7 +644,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
644
644
|
* @param {*} [options] Override http request option.
|
|
645
645
|
* @throws {RequiredError}
|
|
646
646
|
*/
|
|
647
|
-
register: (
|
|
647
|
+
register: (registerBody, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
648
648
|
// verify required parameter 'registerBody' is not null or undefined
|
|
649
649
|
assertParamExists('register', 'registerBody', registerBody);
|
|
650
650
|
const localVarPath = `/register`;
|
|
@@ -676,7 +676,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
676
676
|
* @param {*} [options] Override http request option.
|
|
677
677
|
* @throws {RequiredError}
|
|
678
678
|
*/
|
|
679
|
-
remove: (
|
|
679
|
+
remove: (userIds, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
680
680
|
// verify required parameter 'userIds' is not null or undefined
|
|
681
681
|
assertParamExists('remove', 'userIds', userIds);
|
|
682
682
|
const localVarPath = `/system/user/{userIds}`
|
|
@@ -707,7 +707,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
707
707
|
* @param {*} [options] Override http request option.
|
|
708
708
|
* @throws {RequiredError}
|
|
709
709
|
*/
|
|
710
|
-
resetPwd: (
|
|
710
|
+
resetPwd: (sysUser, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
711
711
|
// verify required parameter 'sysUser' is not null or undefined
|
|
712
712
|
assertParamExists('resetPwd', 'sysUser', sysUser);
|
|
713
713
|
const localVarPath = `/system/user/resetPwd`;
|
|
@@ -738,7 +738,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
738
738
|
* @param {*} [options] Override http request option.
|
|
739
739
|
* @throws {RequiredError}
|
|
740
740
|
*/
|
|
741
|
-
revokePrivacy: (
|
|
741
|
+
revokePrivacy: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
742
742
|
const localVarPath = `/system/user/revoke/privacy`;
|
|
743
743
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
744
744
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -767,7 +767,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
767
767
|
* @param {*} [options] Override http request option.
|
|
768
768
|
* @throws {RequiredError}
|
|
769
769
|
*/
|
|
770
|
-
selectAreaPark: (
|
|
770
|
+
selectAreaPark: (areaParkVO, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
771
771
|
// verify required parameter 'areaParkVO' is not null or undefined
|
|
772
772
|
assertParamExists('selectAreaPark', 'areaParkVO', areaParkVO);
|
|
773
773
|
const localVarPath = `/system/user/select/area/park`;
|
|
@@ -800,7 +800,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
800
800
|
* @param {*} [options] Override http request option.
|
|
801
801
|
* @throws {RequiredError}
|
|
802
802
|
*/
|
|
803
|
-
selectGroupName: (
|
|
803
|
+
selectGroupName: (uuid, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
804
804
|
// verify required parameter 'uuid' is not null or undefined
|
|
805
805
|
assertParamExists('selectGroupName', 'uuid', uuid);
|
|
806
806
|
const localVarPath = `/system/user/select/group`;
|
|
@@ -834,7 +834,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
834
834
|
* @param {*} [options] Override http request option.
|
|
835
835
|
* @throws {RequiredError}
|
|
836
836
|
*/
|
|
837
|
-
selectPark: (
|
|
837
|
+
selectPark: (areaParkVO, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
838
838
|
// verify required parameter 'areaParkVO' is not null or undefined
|
|
839
839
|
assertParamExists('selectPark', 'areaParkVO', areaParkVO);
|
|
840
840
|
const localVarPath = `/system/user/select/park`;
|
|
@@ -868,7 +868,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
868
868
|
* @param {*} [options] Override http request option.
|
|
869
869
|
* @throws {RequiredError}
|
|
870
870
|
*/
|
|
871
|
-
selectParkById: (
|
|
871
|
+
selectParkById: (parkId, type, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
872
872
|
// verify required parameter 'parkId' is not null or undefined
|
|
873
873
|
assertParamExists('selectParkById', 'parkId', parkId);
|
|
874
874
|
const localVarPath = `/system/user/selectParkById`;
|
|
@@ -906,7 +906,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
906
906
|
* @param {*} [options] Override http request option.
|
|
907
907
|
* @throws {RequiredError}
|
|
908
908
|
*/
|
|
909
|
-
selectUserSettingsDetails: (
|
|
909
|
+
selectUserSettingsDetails: (keyConfig, parkId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
910
910
|
// verify required parameter 'keyConfig' is not null or undefined
|
|
911
911
|
assertParamExists('selectUserSettingsDetails', 'keyConfig', keyConfig);
|
|
912
912
|
const localVarPath = `/gizone/userSettings/{keyConfig}`
|
|
@@ -940,7 +940,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
940
940
|
* @param {*} [options] Override http request option.
|
|
941
941
|
* @throws {RequiredError}
|
|
942
942
|
*/
|
|
943
|
-
selectUserType: (
|
|
943
|
+
selectUserType: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
944
944
|
const localVarPath = `/system/user/selectUserType`;
|
|
945
945
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
946
946
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -970,7 +970,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
970
970
|
* @param {*} [options] Override http request option.
|
|
971
971
|
* @throws {RequiredError}
|
|
972
972
|
*/
|
|
973
|
-
sysUserGetInfo: (
|
|
973
|
+
sysUserGetInfo: (userId, parkId, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
974
974
|
// verify required parameter 'userId' is not null or undefined
|
|
975
975
|
assertParamExists('sysUserGetInfo', 'userId', userId);
|
|
976
976
|
// verify required parameter 'parkId' is not null or undefined
|
|
@@ -1004,7 +1004,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
1004
1004
|
* @param {*} [options] Override http request option.
|
|
1005
1005
|
* @throws {RequiredError}
|
|
1006
1006
|
*/
|
|
1007
|
-
updateProfile: (
|
|
1007
|
+
updateProfile: (sysUser, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1008
1008
|
// verify required parameter 'sysUser' is not null or undefined
|
|
1009
1009
|
assertParamExists('updateProfile', 'sysUser', sysUser);
|
|
1010
1010
|
const localVarPath = `/system/user/profile`;
|
|
@@ -1037,7 +1037,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
1037
1037
|
* @param {*} [options] Override http request option.
|
|
1038
1038
|
* @throws {RequiredError}
|
|
1039
1039
|
*/
|
|
1040
|
-
updatePwd: (
|
|
1040
|
+
updatePwd: (oldPassword, newPassword, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1041
1041
|
// verify required parameter 'oldPassword' is not null or undefined
|
|
1042
1042
|
assertParamExists('updatePwd', 'oldPassword', oldPassword);
|
|
1043
1043
|
// verify required parameter 'newPassword' is not null or undefined
|
|
@@ -1075,7 +1075,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
1075
1075
|
* @param {*} [options] Override http request option.
|
|
1076
1076
|
* @throws {RequiredError}
|
|
1077
1077
|
*/
|
|
1078
|
-
userBatchImportConfirm: (
|
|
1078
|
+
userBatchImportConfirm: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1079
1079
|
const localVarPath = `/system/user/exportMysql`;
|
|
1080
1080
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1081
1081
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1103,7 +1103,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
1103
1103
|
* @param {*} [options] Override http request option.
|
|
1104
1104
|
* @throws {RequiredError}
|
|
1105
1105
|
*/
|
|
1106
|
-
userBatchImportPreView: (
|
|
1106
|
+
userBatchImportPreView: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1107
1107
|
const localVarPath = `/system/user/exportRedisList`;
|
|
1108
1108
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1109
1109
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1133,7 +1133,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
1133
1133
|
* @param {*} [options] Override http request option.
|
|
1134
1134
|
* @throws {RequiredError}
|
|
1135
1135
|
*/
|
|
1136
|
-
userBatchImportUpload: (
|
|
1136
|
+
userBatchImportUpload: (file, language, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1137
1137
|
// verify required parameter 'file' is not null or undefined
|
|
1138
1138
|
assertParamExists('userBatchImportUpload', 'file', file);
|
|
1139
1139
|
const localVarPath = `/system/user/saveBatchExport`;
|
|
@@ -1175,7 +1175,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
1175
1175
|
* @param {*} [options] Override http request option.
|
|
1176
1176
|
* @throws {RequiredError}
|
|
1177
1177
|
*/
|
|
1178
|
-
userExport: (
|
|
1178
|
+
userExport: (parkId, searchName, language, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1179
1179
|
const localVarPath = `/system/user/userExport`;
|
|
1180
1180
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1181
1181
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1224,7 +1224,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
1224
1224
|
* @param {*} [options] Override http request option.
|
|
1225
1225
|
* @throws {RequiredError}
|
|
1226
1226
|
*/
|
|
1227
|
-
userPageList: (
|
|
1227
|
+
userPageList: (parkId, hireId, searchName, deptId, supplierId, deptIds, searchValue, createBy, createTime, updateBy, updateTime, remark, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1228
1228
|
// verify required parameter 'parkId' is not null or undefined
|
|
1229
1229
|
assertParamExists('userPageList', 'parkId', parkId);
|
|
1230
1230
|
const localVarPath = `/system/user/listDTO`;
|
|
@@ -1295,7 +1295,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
1295
1295
|
* @param {*} [options] Override http request option.
|
|
1296
1296
|
* @throws {RequiredError}
|
|
1297
1297
|
*/
|
|
1298
|
-
userTemplateDownload: (
|
|
1298
|
+
userTemplateDownload: (language, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1299
1299
|
const localVarPath = `/system/user/uploadAdd`;
|
|
1300
1300
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1301
1301
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1326,7 +1326,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
1326
1326
|
* @param {*} [options] Override http request option.
|
|
1327
1327
|
* @throws {RequiredError}
|
|
1328
1328
|
*/
|
|
1329
|
-
userTypeSelect: (
|
|
1329
|
+
userTypeSelect: (options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1330
1330
|
const localVarPath = `/system/user/user/type/select`;
|
|
1331
1331
|
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
1332
1332
|
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
@@ -1355,7 +1355,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
1355
1355
|
* @param {*} [options] Override http request option.
|
|
1356
1356
|
* @throws {RequiredError}
|
|
1357
1357
|
*/
|
|
1358
|
-
userUpdatePassWord: (
|
|
1358
|
+
userUpdatePassWord: (cUserUpdatePassWordVO, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1359
1359
|
// verify required parameter 'cUserUpdatePassWordVO' is not null or undefined
|
|
1360
1360
|
assertParamExists('userUpdatePassWord', 'cUserUpdatePassWordVO', cUserUpdatePassWordVO);
|
|
1361
1361
|
const localVarPath = `/gizone/User/userUpdatePassWord`;
|
|
@@ -1387,7 +1387,7 @@ export const UserApiAxiosParamCreator = function (configuration) {
|
|
|
1387
1387
|
* @param {*} [options] Override http request option.
|
|
1388
1388
|
* @throws {RequiredError}
|
|
1389
1389
|
*/
|
|
1390
|
-
whetherPrivacy: (
|
|
1390
|
+
whetherPrivacy: (userWhetherPrivacyDto, options = {}) => __awaiter(this, void 0, void 0, function* () {
|
|
1391
1391
|
// verify required parameter 'userWhetherPrivacyDto' is not null or undefined
|
|
1392
1392
|
assertParamExists('whetherPrivacy', 'userWhetherPrivacyDto', userWhetherPrivacyDto);
|
|
1393
1393
|
const localVarPath = `/system/user/whether/privacy`;
|
|
@@ -1429,12 +1429,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1429
1429
|
* @throws {RequiredError}
|
|
1430
1430
|
*/
|
|
1431
1431
|
_export(user, options) {
|
|
1432
|
+
var _a, _b, _c;
|
|
1432
1433
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1433
|
-
var _a, _b, _c;
|
|
1434
1434
|
const localVarAxiosArgs = yield localVarAxiosParamCreator._export(user, options);
|
|
1435
|
-
const
|
|
1436
|
-
const
|
|
1437
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1435
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1436
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi._export']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1437
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1438
1438
|
});
|
|
1439
1439
|
},
|
|
1440
1440
|
/**
|
|
@@ -1444,12 +1444,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1444
1444
|
* @throws {RequiredError}
|
|
1445
1445
|
*/
|
|
1446
1446
|
add(sysUser, options) {
|
|
1447
|
+
var _a, _b, _c;
|
|
1447
1448
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1448
|
-
var _a, _b, _c;
|
|
1449
1449
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.add(sysUser, options);
|
|
1450
|
-
const
|
|
1451
|
-
const
|
|
1452
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1450
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1451
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.add']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1452
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1453
1453
|
});
|
|
1454
1454
|
},
|
|
1455
1455
|
/**
|
|
@@ -1461,12 +1461,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1461
1461
|
* @throws {RequiredError}
|
|
1462
1462
|
*/
|
|
1463
1463
|
addOrUpdate(keyConfig, userSettingsUpdateBO, options) {
|
|
1464
|
+
var _a, _b, _c;
|
|
1464
1465
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1465
|
-
var _a, _b, _c;
|
|
1466
1466
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.addOrUpdate(keyConfig, userSettingsUpdateBO, options);
|
|
1467
|
-
const
|
|
1468
|
-
const
|
|
1469
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1467
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1468
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.addOrUpdate']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1469
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1470
1470
|
});
|
|
1471
1471
|
},
|
|
1472
1472
|
/**
|
|
@@ -1476,12 +1476,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1476
1476
|
* @throws {RequiredError}
|
|
1477
1477
|
*/
|
|
1478
1478
|
appRevokePrivacy(uuid, options) {
|
|
1479
|
+
var _a, _b, _c;
|
|
1479
1480
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1480
|
-
var _a, _b, _c;
|
|
1481
1481
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.appRevokePrivacy(uuid, options);
|
|
1482
|
-
const
|
|
1483
|
-
const
|
|
1484
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1482
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1483
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.appRevokePrivacy']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1484
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1485
1485
|
});
|
|
1486
1486
|
},
|
|
1487
1487
|
/**
|
|
@@ -1492,12 +1492,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1492
1492
|
* @throws {RequiredError}
|
|
1493
1493
|
*/
|
|
1494
1494
|
authRole(userId, parkId, options) {
|
|
1495
|
+
var _a, _b, _c;
|
|
1495
1496
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1496
|
-
var _a, _b, _c;
|
|
1497
1497
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.authRole(userId, parkId, options);
|
|
1498
|
-
const
|
|
1499
|
-
const
|
|
1500
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1498
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1499
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.authRole']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1500
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1501
1501
|
});
|
|
1502
1502
|
},
|
|
1503
1503
|
/**
|
|
@@ -1507,12 +1507,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1507
1507
|
* @throws {RequiredError}
|
|
1508
1508
|
*/
|
|
1509
1509
|
avatar(avatarfile, options) {
|
|
1510
|
+
var _a, _b, _c;
|
|
1510
1511
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1511
|
-
var _a, _b, _c;
|
|
1512
1512
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.avatar(avatarfile, options);
|
|
1513
|
-
const
|
|
1514
|
-
const
|
|
1515
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1513
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1514
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.avatar']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1515
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1516
1516
|
});
|
|
1517
1517
|
},
|
|
1518
1518
|
/**
|
|
@@ -1523,12 +1523,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1523
1523
|
* @throws {RequiredError}
|
|
1524
1524
|
*/
|
|
1525
1525
|
bindPrivacy(uuid, privacyType, options) {
|
|
1526
|
+
var _a, _b, _c;
|
|
1526
1527
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1527
|
-
var _a, _b, _c;
|
|
1528
1528
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.bindPrivacy(uuid, privacyType, options);
|
|
1529
|
-
const
|
|
1530
|
-
const
|
|
1531
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1529
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1530
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.bindPrivacy']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1531
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1532
1532
|
});
|
|
1533
1533
|
},
|
|
1534
1534
|
/**
|
|
@@ -1539,12 +1539,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1539
1539
|
* @throws {RequiredError}
|
|
1540
1540
|
*/
|
|
1541
1541
|
changePassword(changePasswordDto, options) {
|
|
1542
|
+
var _a, _b, _c;
|
|
1542
1543
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1543
|
-
var _a, _b, _c;
|
|
1544
1544
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.changePassword(changePasswordDto, options);
|
|
1545
|
-
const
|
|
1546
|
-
const
|
|
1547
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1545
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1546
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.changePassword']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1547
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1548
1548
|
});
|
|
1549
1549
|
},
|
|
1550
1550
|
/**
|
|
@@ -1554,12 +1554,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1554
1554
|
* @throws {RequiredError}
|
|
1555
1555
|
*/
|
|
1556
1556
|
changeStatus(sysUser, options) {
|
|
1557
|
+
var _a, _b, _c;
|
|
1557
1558
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1558
|
-
var _a, _b, _c;
|
|
1559
1559
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.changeStatus(sysUser, options);
|
|
1560
|
-
const
|
|
1561
|
-
const
|
|
1562
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1560
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1561
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.changeStatus']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1562
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1563
1563
|
});
|
|
1564
1564
|
},
|
|
1565
1565
|
/**
|
|
@@ -1570,12 +1570,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1570
1570
|
* @throws {RequiredError}
|
|
1571
1571
|
*/
|
|
1572
1572
|
delUser(delUserVO, options) {
|
|
1573
|
+
var _a, _b, _c;
|
|
1573
1574
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1574
|
-
var _a, _b, _c;
|
|
1575
1575
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.delUser(delUserVO, options);
|
|
1576
|
-
const
|
|
1577
|
-
const
|
|
1578
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1576
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1577
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.delUser']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1578
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1579
1579
|
});
|
|
1580
1580
|
},
|
|
1581
1581
|
/**
|
|
@@ -1585,12 +1585,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1585
1585
|
* @throws {RequiredError}
|
|
1586
1586
|
*/
|
|
1587
1587
|
edit(sysUser, options) {
|
|
1588
|
+
var _a, _b, _c;
|
|
1588
1589
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1589
|
-
var _a, _b, _c;
|
|
1590
1590
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.edit(sysUser, options);
|
|
1591
|
-
const
|
|
1592
|
-
const
|
|
1593
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1591
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1592
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.edit']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1593
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1594
1594
|
});
|
|
1595
1595
|
},
|
|
1596
1596
|
/**
|
|
@@ -1600,12 +1600,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1600
1600
|
* @throws {RequiredError}
|
|
1601
1601
|
*/
|
|
1602
1602
|
getUserInfo(options) {
|
|
1603
|
+
var _a, _b, _c;
|
|
1603
1604
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1604
|
-
var _a, _b, _c;
|
|
1605
1605
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.getUserInfo(options);
|
|
1606
|
-
const
|
|
1607
|
-
const
|
|
1608
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1606
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1607
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.getUserInfo']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1608
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1609
1609
|
});
|
|
1610
1610
|
},
|
|
1611
1611
|
/**
|
|
@@ -1616,12 +1616,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1616
1616
|
* @throws {RequiredError}
|
|
1617
1617
|
*/
|
|
1618
1618
|
importData(file, updateSupport, options) {
|
|
1619
|
+
var _a, _b, _c;
|
|
1619
1620
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1620
|
-
var _a, _b, _c;
|
|
1621
1621
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.importData(file, updateSupport, options);
|
|
1622
|
-
const
|
|
1623
|
-
const
|
|
1624
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1622
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1623
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.importData']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1624
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1625
1625
|
});
|
|
1626
1626
|
},
|
|
1627
1627
|
/**
|
|
@@ -1630,12 +1630,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1630
1630
|
* @throws {RequiredError}
|
|
1631
1631
|
*/
|
|
1632
1632
|
importTemplate(options) {
|
|
1633
|
+
var _a, _b, _c;
|
|
1633
1634
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1634
|
-
var _a, _b, _c;
|
|
1635
1635
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.importTemplate(options);
|
|
1636
|
-
const
|
|
1637
|
-
const
|
|
1638
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1636
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1637
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.importTemplate']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1638
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1639
1639
|
});
|
|
1640
1640
|
},
|
|
1641
1641
|
/**
|
|
@@ -1646,12 +1646,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1646
1646
|
* @throws {RequiredError}
|
|
1647
1647
|
*/
|
|
1648
1648
|
insertAuthRole(userId, roleIds, options) {
|
|
1649
|
+
var _a, _b, _c;
|
|
1649
1650
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1650
|
-
var _a, _b, _c;
|
|
1651
1651
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.insertAuthRole(userId, roleIds, options);
|
|
1652
|
-
const
|
|
1653
|
-
const
|
|
1654
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1652
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1653
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.insertAuthRole']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1654
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1655
1655
|
});
|
|
1656
1656
|
},
|
|
1657
1657
|
/**
|
|
@@ -1661,12 +1661,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1661
1661
|
* @throws {RequiredError}
|
|
1662
1662
|
*/
|
|
1663
1663
|
list(user, options) {
|
|
1664
|
+
var _a, _b, _c;
|
|
1664
1665
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1665
|
-
var _a, _b, _c;
|
|
1666
1666
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.list(user, options);
|
|
1667
|
-
const
|
|
1668
|
-
const
|
|
1669
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1667
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1668
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.list']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1669
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1670
1670
|
});
|
|
1671
1671
|
},
|
|
1672
1672
|
/**
|
|
@@ -1677,12 +1677,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1677
1677
|
* @throws {RequiredError}
|
|
1678
1678
|
*/
|
|
1679
1679
|
listUserByDept(parkId, options) {
|
|
1680
|
+
var _a, _b, _c;
|
|
1680
1681
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1681
|
-
var _a, _b, _c;
|
|
1682
1682
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.listUserByDept(parkId, options);
|
|
1683
|
-
const
|
|
1684
|
-
const
|
|
1685
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1683
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1684
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.listUserByDept']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1685
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1686
1686
|
});
|
|
1687
1687
|
},
|
|
1688
1688
|
/**
|
|
@@ -1691,12 +1691,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1691
1691
|
* @throws {RequiredError}
|
|
1692
1692
|
*/
|
|
1693
1693
|
profile(options) {
|
|
1694
|
+
var _a, _b, _c;
|
|
1694
1695
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1695
|
-
var _a, _b, _c;
|
|
1696
1696
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.profile(options);
|
|
1697
|
-
const
|
|
1698
|
-
const
|
|
1699
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1697
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1698
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.profile']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1699
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1700
1700
|
});
|
|
1701
1701
|
},
|
|
1702
1702
|
/**
|
|
@@ -1706,12 +1706,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1706
1706
|
* @throws {RequiredError}
|
|
1707
1707
|
*/
|
|
1708
1708
|
register(registerBody, options) {
|
|
1709
|
+
var _a, _b, _c;
|
|
1709
1710
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1710
|
-
var _a, _b, _c;
|
|
1711
1711
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.register(registerBody, options);
|
|
1712
|
-
const
|
|
1713
|
-
const
|
|
1714
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1712
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1713
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.register']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1714
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1715
1715
|
});
|
|
1716
1716
|
},
|
|
1717
1717
|
/**
|
|
@@ -1721,12 +1721,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1721
1721
|
* @throws {RequiredError}
|
|
1722
1722
|
*/
|
|
1723
1723
|
remove(userIds, options) {
|
|
1724
|
+
var _a, _b, _c;
|
|
1724
1725
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1725
|
-
var _a, _b, _c;
|
|
1726
1726
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.remove(userIds, options);
|
|
1727
|
-
const
|
|
1728
|
-
const
|
|
1729
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1727
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1728
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.remove']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1729
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1730
1730
|
});
|
|
1731
1731
|
},
|
|
1732
1732
|
/**
|
|
@@ -1736,12 +1736,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1736
1736
|
* @throws {RequiredError}
|
|
1737
1737
|
*/
|
|
1738
1738
|
resetPwd(sysUser, options) {
|
|
1739
|
+
var _a, _b, _c;
|
|
1739
1740
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1740
|
-
var _a, _b, _c;
|
|
1741
1741
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.resetPwd(sysUser, options);
|
|
1742
|
-
const
|
|
1743
|
-
const
|
|
1744
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1742
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1743
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.resetPwd']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1744
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1745
1745
|
});
|
|
1746
1746
|
},
|
|
1747
1747
|
/**
|
|
@@ -1750,12 +1750,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1750
1750
|
* @throws {RequiredError}
|
|
1751
1751
|
*/
|
|
1752
1752
|
revokePrivacy(options) {
|
|
1753
|
+
var _a, _b, _c;
|
|
1753
1754
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1754
|
-
var _a, _b, _c;
|
|
1755
1755
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.revokePrivacy(options);
|
|
1756
|
-
const
|
|
1757
|
-
const
|
|
1758
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1756
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1757
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.revokePrivacy']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1758
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1759
1759
|
});
|
|
1760
1760
|
},
|
|
1761
1761
|
/**
|
|
@@ -1766,12 +1766,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1766
1766
|
* @throws {RequiredError}
|
|
1767
1767
|
*/
|
|
1768
1768
|
selectAreaPark(areaParkVO, options) {
|
|
1769
|
+
var _a, _b, _c;
|
|
1769
1770
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1770
|
-
var _a, _b, _c;
|
|
1771
1771
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.selectAreaPark(areaParkVO, options);
|
|
1772
|
-
const
|
|
1773
|
-
const
|
|
1774
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1772
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1773
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.selectAreaPark']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1774
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1775
1775
|
});
|
|
1776
1776
|
},
|
|
1777
1777
|
/**
|
|
@@ -1782,12 +1782,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1782
1782
|
* @throws {RequiredError}
|
|
1783
1783
|
*/
|
|
1784
1784
|
selectGroupName(uuid, options) {
|
|
1785
|
+
var _a, _b, _c;
|
|
1785
1786
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1786
|
-
var _a, _b, _c;
|
|
1787
1787
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.selectGroupName(uuid, options);
|
|
1788
|
-
const
|
|
1789
|
-
const
|
|
1790
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1788
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1789
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.selectGroupName']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1790
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1791
1791
|
});
|
|
1792
1792
|
},
|
|
1793
1793
|
/**
|
|
@@ -1798,12 +1798,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1798
1798
|
* @throws {RequiredError}
|
|
1799
1799
|
*/
|
|
1800
1800
|
selectPark(areaParkVO, options) {
|
|
1801
|
+
var _a, _b, _c;
|
|
1801
1802
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1802
|
-
var _a, _b, _c;
|
|
1803
1803
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.selectPark(areaParkVO, options);
|
|
1804
|
-
const
|
|
1805
|
-
const
|
|
1806
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1804
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1805
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.selectPark']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1806
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1807
1807
|
});
|
|
1808
1808
|
},
|
|
1809
1809
|
/**
|
|
@@ -1815,12 +1815,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1815
1815
|
* @throws {RequiredError}
|
|
1816
1816
|
*/
|
|
1817
1817
|
selectParkById(parkId, type, options) {
|
|
1818
|
+
var _a, _b, _c;
|
|
1818
1819
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1819
|
-
var _a, _b, _c;
|
|
1820
1820
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.selectParkById(parkId, type, options);
|
|
1821
|
-
const
|
|
1822
|
-
const
|
|
1823
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1821
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1822
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.selectParkById']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1823
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1824
1824
|
});
|
|
1825
1825
|
},
|
|
1826
1826
|
/**
|
|
@@ -1832,12 +1832,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1832
1832
|
* @throws {RequiredError}
|
|
1833
1833
|
*/
|
|
1834
1834
|
selectUserSettingsDetails(keyConfig, parkId, options) {
|
|
1835
|
+
var _a, _b, _c;
|
|
1835
1836
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1836
|
-
var _a, _b, _c;
|
|
1837
1837
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.selectUserSettingsDetails(keyConfig, parkId, options);
|
|
1838
|
-
const
|
|
1839
|
-
const
|
|
1840
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1838
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1839
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.selectUserSettingsDetails']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1840
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1841
1841
|
});
|
|
1842
1842
|
},
|
|
1843
1843
|
/**
|
|
@@ -1847,12 +1847,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1847
1847
|
* @throws {RequiredError}
|
|
1848
1848
|
*/
|
|
1849
1849
|
selectUserType(options) {
|
|
1850
|
+
var _a, _b, _c;
|
|
1850
1851
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1851
|
-
var _a, _b, _c;
|
|
1852
1852
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.selectUserType(options);
|
|
1853
|
-
const
|
|
1854
|
-
const
|
|
1855
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1853
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1854
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.selectUserType']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1855
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1856
1856
|
});
|
|
1857
1857
|
},
|
|
1858
1858
|
/**
|
|
@@ -1864,12 +1864,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1864
1864
|
* @throws {RequiredError}
|
|
1865
1865
|
*/
|
|
1866
1866
|
sysUserGetInfo(userId, parkId, options) {
|
|
1867
|
+
var _a, _b, _c;
|
|
1867
1868
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1868
|
-
var _a, _b, _c;
|
|
1869
1869
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.sysUserGetInfo(userId, parkId, options);
|
|
1870
|
-
const
|
|
1871
|
-
const
|
|
1872
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1870
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1871
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.sysUserGetInfo']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1872
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1873
1873
|
});
|
|
1874
1874
|
},
|
|
1875
1875
|
/**
|
|
@@ -1879,12 +1879,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1879
1879
|
* @throws {RequiredError}
|
|
1880
1880
|
*/
|
|
1881
1881
|
updateProfile(sysUser, options) {
|
|
1882
|
+
var _a, _b, _c;
|
|
1882
1883
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1883
|
-
var _a, _b, _c;
|
|
1884
1884
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.updateProfile(sysUser, options);
|
|
1885
|
-
const
|
|
1886
|
-
const
|
|
1887
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1885
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1886
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.updateProfile']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1887
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1888
1888
|
});
|
|
1889
1889
|
},
|
|
1890
1890
|
/**
|
|
@@ -1895,12 +1895,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1895
1895
|
* @throws {RequiredError}
|
|
1896
1896
|
*/
|
|
1897
1897
|
updatePwd(oldPassword, newPassword, options) {
|
|
1898
|
+
var _a, _b, _c;
|
|
1898
1899
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1899
|
-
var _a, _b, _c;
|
|
1900
1900
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.updatePwd(oldPassword, newPassword, options);
|
|
1901
|
-
const
|
|
1902
|
-
const
|
|
1903
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1901
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1902
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.updatePwd']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1903
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1904
1904
|
});
|
|
1905
1905
|
},
|
|
1906
1906
|
/**
|
|
@@ -1910,12 +1910,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1910
1910
|
* @throws {RequiredError}
|
|
1911
1911
|
*/
|
|
1912
1912
|
userBatchImportConfirm(options) {
|
|
1913
|
+
var _a, _b, _c;
|
|
1913
1914
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1914
|
-
var _a, _b, _c;
|
|
1915
1915
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.userBatchImportConfirm(options);
|
|
1916
|
-
const
|
|
1917
|
-
const
|
|
1918
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1916
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1917
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.userBatchImportConfirm']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1918
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1919
1919
|
});
|
|
1920
1920
|
},
|
|
1921
1921
|
/**
|
|
@@ -1925,12 +1925,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1925
1925
|
* @throws {RequiredError}
|
|
1926
1926
|
*/
|
|
1927
1927
|
userBatchImportPreView(options) {
|
|
1928
|
+
var _a, _b, _c;
|
|
1928
1929
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1929
|
-
var _a, _b, _c;
|
|
1930
1930
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.userBatchImportPreView(options);
|
|
1931
|
-
const
|
|
1932
|
-
const
|
|
1933
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1931
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1932
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.userBatchImportPreView']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1933
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1934
1934
|
});
|
|
1935
1935
|
},
|
|
1936
1936
|
/**
|
|
@@ -1942,12 +1942,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1942
1942
|
* @throws {RequiredError}
|
|
1943
1943
|
*/
|
|
1944
1944
|
userBatchImportUpload(file, language, options) {
|
|
1945
|
+
var _a, _b, _c;
|
|
1945
1946
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1946
|
-
var _a, _b, _c;
|
|
1947
1947
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.userBatchImportUpload(file, language, options);
|
|
1948
|
-
const
|
|
1949
|
-
const
|
|
1950
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1948
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1949
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.userBatchImportUpload']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1950
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1951
1951
|
});
|
|
1952
1952
|
},
|
|
1953
1953
|
/**
|
|
@@ -1960,12 +1960,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1960
1960
|
* @throws {RequiredError}
|
|
1961
1961
|
*/
|
|
1962
1962
|
userExport(parkId, searchName, language, options) {
|
|
1963
|
+
var _a, _b, _c;
|
|
1963
1964
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1964
|
-
var _a, _b, _c;
|
|
1965
1965
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.userExport(parkId, searchName, language, options);
|
|
1966
|
-
const
|
|
1967
|
-
const
|
|
1968
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1966
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1967
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.userExport']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1968
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1969
1969
|
});
|
|
1970
1970
|
},
|
|
1971
1971
|
/**
|
|
@@ -1987,12 +1987,12 @@ export const UserApiFp = function (configuration) {
|
|
|
1987
1987
|
* @throws {RequiredError}
|
|
1988
1988
|
*/
|
|
1989
1989
|
userPageList(parkId, hireId, searchName, deptId, supplierId, deptIds, searchValue, createBy, createTime, updateBy, updateTime, remark, options) {
|
|
1990
|
+
var _a, _b, _c;
|
|
1990
1991
|
return __awaiter(this, void 0, void 0, function* () {
|
|
1991
|
-
var _a, _b, _c;
|
|
1992
1992
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.userPageList(parkId, hireId, searchName, deptId, supplierId, deptIds, searchValue, createBy, createTime, updateBy, updateTime, remark, options);
|
|
1993
|
-
const
|
|
1994
|
-
const
|
|
1995
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
1993
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
1994
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.userPageList']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
1995
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
1996
1996
|
});
|
|
1997
1997
|
},
|
|
1998
1998
|
/**
|
|
@@ -2003,12 +2003,12 @@ export const UserApiFp = function (configuration) {
|
|
|
2003
2003
|
* @throws {RequiredError}
|
|
2004
2004
|
*/
|
|
2005
2005
|
userTemplateDownload(language, options) {
|
|
2006
|
+
var _a, _b, _c;
|
|
2006
2007
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2007
|
-
var _a, _b, _c;
|
|
2008
2008
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.userTemplateDownload(language, options);
|
|
2009
|
-
const
|
|
2010
|
-
const
|
|
2011
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
2009
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2010
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.userTemplateDownload']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
2011
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
2012
2012
|
});
|
|
2013
2013
|
},
|
|
2014
2014
|
/**
|
|
@@ -2018,12 +2018,12 @@ export const UserApiFp = function (configuration) {
|
|
|
2018
2018
|
* @throws {RequiredError}
|
|
2019
2019
|
*/
|
|
2020
2020
|
userTypeSelect(options) {
|
|
2021
|
+
var _a, _b, _c;
|
|
2021
2022
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2022
|
-
var _a, _b, _c;
|
|
2023
2023
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.userTypeSelect(options);
|
|
2024
|
-
const
|
|
2025
|
-
const
|
|
2026
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
2024
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2025
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.userTypeSelect']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
2026
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
2027
2027
|
});
|
|
2028
2028
|
},
|
|
2029
2029
|
/**
|
|
@@ -2034,12 +2034,12 @@ export const UserApiFp = function (configuration) {
|
|
|
2034
2034
|
* @throws {RequiredError}
|
|
2035
2035
|
*/
|
|
2036
2036
|
userUpdatePassWord(cUserUpdatePassWordVO, options) {
|
|
2037
|
+
var _a, _b, _c;
|
|
2037
2038
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2038
|
-
var _a, _b, _c;
|
|
2039
2039
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.userUpdatePassWord(cUserUpdatePassWordVO, options);
|
|
2040
|
-
const
|
|
2041
|
-
const
|
|
2042
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
2040
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2041
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.userUpdatePassWord']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
2042
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
2043
2043
|
});
|
|
2044
2044
|
},
|
|
2045
2045
|
/**
|
|
@@ -2049,12 +2049,12 @@ export const UserApiFp = function (configuration) {
|
|
|
2049
2049
|
* @throws {RequiredError}
|
|
2050
2050
|
*/
|
|
2051
2051
|
whetherPrivacy(userWhetherPrivacyDto, options) {
|
|
2052
|
+
var _a, _b, _c;
|
|
2052
2053
|
return __awaiter(this, void 0, void 0, function* () {
|
|
2053
|
-
var _a, _b, _c;
|
|
2054
2054
|
const localVarAxiosArgs = yield localVarAxiosParamCreator.whetherPrivacy(userWhetherPrivacyDto, options);
|
|
2055
|
-
const
|
|
2056
|
-
const
|
|
2057
|
-
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios,
|
|
2055
|
+
const index = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
2056
|
+
const operationBasePath = (_c = (_b = operationServerMap['UserApi.whetherPrivacy']) === null || _b === void 0 ? void 0 : _b[index]) === null || _c === void 0 ? void 0 : _c.url;
|
|
2057
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, operationBasePath || basePath);
|
|
2058
2058
|
});
|
|
2059
2059
|
},
|
|
2060
2060
|
};
|