apps/taro/src/components/Layout/ContentScrollView.vue
@@ -1,7 +1,7 @@ <template> <scroll-view class="content-scroll-view-wrapper" :class="{ hasPaddingTop, isNoWeb: !isWeb }" :class="{ hasPaddingTop, isNoWeb: !isWeb || showBgColor }" :scroll-y="true" > <ContentView @@ -25,12 +25,14 @@ hasPaddingTop?: boolean; allHeight?: boolean; paddingH?: boolean; showBgColor?: boolean; }; const props = withDefaults(defineProps<Props>(), { hasPaddingTop: false, allHeight: false, paddingH: true, showBgColor: true, }); </script> apps/taro/src/components/List/List.vue
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,19 @@ <template> <div class="pro-list"> <slot /> </div> </template> <script setup lang="ts"> defineOptions({ name: 'List', }); </script> <style lang="scss"> @import '@/styles/common.scss'; .pro-list { background: #ffffff; } </style> apps/taro/src/components/List/ListItem.vue
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,64 @@ <template> <div class="pro-list-item"> <div class="pro-list-item-inner"> <img v-if="icon" :src="icon" class="pro-list-item-icon" /> <div class="pro-list-item-title">{{ title }}</div> <slot name="extra"></slot> <img v-if="showArrow" :src="IconArrow" class="pro-list-item-arrow" /> </div> </div> </template> <script setup lang="ts"> import IconArrow from '@/assets/setting/icon-arrow.png'; defineOptions({ name: 'ListItem', }); type Props = { icon?: string; title?: string; showArrow?: boolean; }; const props = withDefaults(defineProps<Props>(), { showArrow: true, }); </script> <style lang="scss"> @import '@/styles/common.scss'; .pro-list-item { padding: 0 boleGetCssVar('size', 'body-padding-h'); .pro-list-item-inner { height: 102px; border-bottom: 1px solid #f6f6f6; display: flex; align-items: center; .pro-list-item-icon { width: 40px; height: 40px; margin-right: 16px; } .pro-list-item-title { font-weight: 400; font-size: 28px; color: boleGetCssVar('text-color', 'primary'); line-height: 40px; flex: 1; min-width: 0; @include ellipsis; } .pro-list-item-arrow { width: 32px; height: 32px; } } } </style> apps/taro/src/components/Policy/Policy.vue
@@ -55,9 +55,9 @@ vertical-align: middle; .nutui-iconfont { font-size: 12px; height: 16px !important; width: 16px !important; font-size: 28px; height: 32px !important; width: 32px !important; } .bl-radio { apps/taro/src/components/index.ts
@@ -1,5 +1,7 @@ export { default as CommonNavigationBar } from './NavigationBar/CommonNavigationBar.vue'; export { default as TransparentNavigationBar } from './NavigationBar/TransparentNavigationBar.vue'; export { default as List } from './List/List.vue'; export { default as ListItem } from './List/ListItem.vue'; export { default as LargeTitleNavigationBar } from './NavigationBar/LargeTitleNavigationBar.vue'; export { default as PageLayout } from './Layout/PageLayout.vue'; export { default as PageLayoutWithBg } from './Layout/PageLayoutWithBg.vue'; apps/taro/src/hooks/user.ts
@@ -5,6 +5,8 @@ import { useQuery } from '@tanstack/vue-query'; import { MaybeRef } from 'vue'; import { useRefeshDidShow } from './infiniteLoading'; import { LoginFormTabs } from '@/subpackages/login/constants'; import { useLoginedJump } from './login'; export function useUser() { const userStore = useUserStore(); @@ -59,10 +61,14 @@ export function useGoLogin() { const router = Taro.useRouter(); const { redirectParams } = useLoginedJump(); function goLoginFn() { // Taro.navigateTo({ // url: `${RouterPath.authorization}?redirect=${router.path}&${object2query(router.params)}`, // }); Taro.navigateTo({ url: `${RouterPath.authorization}?redirect=${router.path}&${object2query(router.params)}`, url: `${RouterPath.loginByForm}?redirect=${redirectParams.value}&tab=${LoginFormTabs.VerificationCodeLogin}`, }); } apps/taro/src/pages/mine/index.scss
@@ -1,5 +1,9 @@ @import '@/styles/common.scss'; // .mine-page-wrapper { // background-color: $body-background-color; // } .mine-page-bg { position: fixed; z-index: -1; @@ -10,146 +14,35 @@ object-fit: cover; } .mine-page-wrapper { .mine-avatar-wrapper { flex: 1; min-width: 0; .mine-page-top-view { display: flex; padding: 30px 20px; margin-top: 30px; .mine-avatar { margin-right: 22px; width: 120px; height: 120px; object-fit: cover; margin-right: 30px; } .user-info { display: flex; align-items: center; flex: 1; min-width: 0; display: flex; flex-direction: column; padding: 6px 0; justify-content: space-between; .user-info-item { font-weight: 600; font-size: 34px; .user-info-name { font-size: 36px; font-weight: bold; color: boleGetCssVar('text-color', 'primary'); line-height: 44px; flex: 1; min-width: 0; @include ellipsis; } .user-info-auth { display: inline-flex; .user-info-auth-item { margin-right: 20px; display: inline-flex; align-items: center; .user-info-unCertified { display: inline-flex; align-items: center; height: 34px; width: fit-content; .user-info-unCertified-icon { width: 20px; height: 28px; margin-right: 6px; } .user-info-unCertified-text { font-weight: 400; font-size: 28px; color: boleGetCssVar('text-color', 'secondary'); } .user-info-unCertified-btn { font-weight: 400; font-size: 28px; color: boleGetCssVar('color', 'primary'); } } } } } .mine-go-login { font-size: 40px; color: boleGetCssVar('text-color', 'primary'); line-height: 104px; } } .mine-content-scroll-view { padding-top: 26px; background-color: transparent; .mine-order-list { margin-bottom: 18px; padding: 0 24px; .mine-order-list-title { display: flex; align-items: center; justify-content: space-between; border-bottom: 2px solid #eeeeee; padding: 24px 0; .mine-order-list-title-text { font-weight: 600; font-size: 28px; color: boleGetCssVar('text-color', 'primary'); line-height: 32px; } .mine-order-list-title-icon { width: 32px; height: 32px; } } .mine-order-list-content { padding: 24px 0; display: flex; justify-content: space-around; .mine-order-list-item { display: inline-flex; flex-direction: column; align-items: center; .mine-order-list-icon { width: 64px; height: 64px; } .mine-order-list-text { font-size: 28px; color: boleGetCssVar('text-color', 'primary'); } } } } .mine-balance { margin-bottom: 18px; padding: 24px; padding-left: 34px; .mine-balance-title { font-size: 30px; line-height: 42px; color: boleGetCssVar('text-color', 'primary'); margin-bottom: 16px; } .mine-balance-money { font-size: 48px; line-height: 68px; color: boleGetCssVar('text-color', 'primary'); } .mine-balance-btn { display: flex; align-items: center; justify-content: flex-end; font-size: 22px; color: boleGetCssVar('text-color', 'regular'); line-height: 36px; .mine-balance-btn-icon { width: 32px; height: 32px; } } } .mine-list-wrapper { border-radius: 12px; } } margin-top: 60px; } apps/taro/src/pages/mine/index.vue
@@ -10,18 +10,31 @@ <template #bg> <img :src="OssAssets.mine.Bg" class="mine-page-bg" :style="{ height: `${bgHeight}px` }" /> </template> <div class="mine-page-top-view" @click="goLogin"> <img class="mine-avatar" :src="DefaultAvatar" alt="" /> <div class="user-info"> <div class="user-info-name" v-if="isLogin">{{ userDetail?.userName ?? '123' }}</div> <div class="mine-go-login" v-else>ç»å½</div> </div> </div> <ContentScrollView> <List class="mine-list-wrapper"> <ListItem title="订å管ç" @click="goOrderManage"></ListItem> </List> </ContentScrollView> </PageLayoutWithBg> </template> <script setup lang="ts"> import { TransparentNavigationBar, ContentScrollView } from '@/components'; import { TransparentNavigationBar, List, ListItem } from '@/components'; import { useUser, useIsLogin, useGoLogin } from '@/hooks'; import Taro from '@tarojs/taro'; import { RouterPath, OssAssets } from '@/constants'; import DefaultAvatar from '@/assets/components/icon-default-avatar.png'; import { useSystemStore } from '@/stores/modules/system'; import PageLayoutWithBg from '@/components/Layout/PageLayoutWithBg.vue'; const { userDetail, isCertified } = useUser(); const { userDetail } = useUser(); const isLogin = useIsLogin(); const systemStore = useSystemStore(); @@ -40,10 +53,6 @@ }); } function goSetting() { goPage(RouterPath.setting); } Taro.showShareMenu({ showShareItems: ['shareAppMessage'], }); @@ -56,38 +65,10 @@ }; }); function goAuthentication() { goPage(RouterPath.authenticationHome); } function goMineSign() { goPage(RouterPath.mineSign); } function goMineHire() { goPage(RouterPath.mineHire); } function goMineCancel() { goPage(RouterPath.mineCancel); } function goMineCollectTask() { goPage(RouterPath.mineCollectTask); } function goMineAgreementSign() { goPage(RouterPath.mineAgreementSign); } function goOrderManage() {} </script> <style lang="scss"> @import '@/styles/common.scss'; @import './index.scss'; .mine-setting-badge { margin-right: 20px; } .mine-setting-list { .pro-list-item-icon { width: 48px; height: 48px; } } </style> apps/taro/src/subpackages/login/loginByForm/loginByForm.vue
@@ -15,7 +15,7 @@ <div class="loginB-form-tab-item-line"></div> </div> </div> <div <!-- <div :class="['loginB-form-tab-item', { active: tabType === LoginFormTabs.AccountLogin }]" @click="handleTabChange(LoginFormTabs.AccountLogin)" > @@ -24,7 +24,7 @@ <div class="loginB-form-tab-item-text">è´¦æ·ç»å½</div> <div class="loginB-form-tab-item-line"></div> </div> </div> </div> --> </div> <VerificationCodeLoginForm v-show="tabType === LoginFormTabs.VerificationCodeLogin" apps/taro/src/subpackages/login/loginByForm/verificationCodeLoginForm.vue
@@ -27,7 +27,7 @@ </nut-form-item> </nut-form> <LargeButton class="login-btn" @click="handleLogin" :loading="form.loading">ç»å½</LargeButton> <div class="go-register-btn" @click="goRegister">ç«å³æ³¨å</div> <!-- <div class="go-register-btn" @click="goRegister">ç«å³æ³¨å</div> --> </div> </template> @@ -75,7 +75,7 @@ await commonServices.sendVerificationCode( { phoneNumber: form.phoneNumber, businessType: VerificationCodeBusinessType.PhoneMesssageCodeLogin, businessType: VerificationCodeBusinessType.LifePayPhoneMesssageCodeLogin, }, { showLoading: false } ); packages/constants/enum.ts
@@ -77,6 +77,10 @@ * ç¨æ·è®¤è¯é¶è¡å¡è®¤è¯(ç¬¬ä¸æ¹) */ UserCertificationBankCardCertification = 910, /** * çæ´»ç¼´è´¹éªè¯ç ç»å½ */ LifePayPhoneMesssageCodeLogin = 80, } export enum WxMiniAppEnum { packages/services/api/ACOOLYNotify.ts
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,11 @@ /* eslint-disable */ // @ts-ignore import { request } from '@/utils/request'; /** ACOOLYåè°éç¥ POST /api/ACOOLYNotify/ACOOLYNotify */ export async function aCOOLYNotify(options?: API.RequestConfig) { return request<any>('/api/ACOOLYNotify/ACOOLYNotify', { method: 'POST', ...(options || {}), }); } packages/services/api/Account.ts
@@ -284,6 +284,21 @@ }); } /** life payææºéªè¯ç ç»å½ POST /api/Account/LifePayPhoneMesssageCodeLogin */ export async function lifePayPhoneMesssageCodeLogin( body: API.PhoneMesssageCodeLoginInput, options?: API.RequestConfig ) { return request<string>('/api/Account/LifePayPhoneMesssageCodeLogin', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); } /** å¯ç ç»å½ POST /api/Account/PasswordLogin */ export async function passwordLogin(body: API.PasswordLoginInput, options?: API.RequestConfig) { return request<API.IdentityModelTokenCacheItem>('/api/Account/PasswordLogin', { packages/services/api/AlipayEcsignNotify.ts
@@ -4,39 +4,15 @@ /** ä¿¡ä»»ç¾å¼æ¥éç¥ POST /api/AlipayEcsignNotify/SignorderNotify */ export async function signorderNotify( body: { /** ç¾çº¦è®¢åå· */ SignOrderNo?: string; /** åèµ·ç¾çº¦çä¸å¡æµæ°´å· */ OutOrderNo?: string; /** 订åç¶æï¼INIT-åå§åï¼FAIL-ç¾çº¦å¤±è´¥ï¼SUCCESS-ç¾çº¦æå */ OrderStatus?: string; /** ç¾çº¦æ¹æ¡ç */ SolutionCode?: string; /** å建æ¶é´ */ GmtCreate?: string; /** æ´æ°æ¶é´ */ GmtModified?: string; }, body: API.AlipayEcsignNotifyInput, options?: API.RequestConfig ) { const formData = new FormData(); Object.keys(body).forEach((ele) => { const item = (body as any)[ele]; if (item !== undefined && item !== null) { formData.append( ele, typeof item === 'object' && !(item instanceof File) ? JSON.stringify(item) : item ); } }); return request<any>('/api/AlipayEcsignNotify/SignorderNotify', { method: 'POST', data: formData, requestType: 'form', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); } packages/services/api/LgGigWorker.ts
@@ -17,7 +17,7 @@ }); } /** å¯¹å®¢æ·æ°å¢ç¼è¾å忍¡æ¿ POST /api/LgGigWorker/AddUpdateCustomerContractTemplate */ /** è¿è¥ç«¯å¯¹å®¢æ·æ°å¢ç¼è¾å忍¡æ¿ POST /api/LgGigWorker/AddUpdateCustomerContractTemplate */ export async function addUpdateCustomerContractTemplate( body: API.AddUpdateContractTemplateInput, options?: API.RequestConfig @@ -32,6 +32,29 @@ }); } /** å®¢æ·æ°å¢ç¼è¾å忍¡æ¿ POST /api/LgGigWorker/AddUpdateCustomerContractTemplateWithCustomer */ export async function addUpdateCustomerContractTemplateWithCustomer( body: API.AddUpdateContractTemplateInput, options?: API.RequestConfig ) { return request<number>('/api/LgGigWorker/AddUpdateCustomerContractTemplateWithCustomer', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); } /** 夿æ¯å¦è½ç¾ç½² GET /api/LgGigWorker/CanSign */ export async function canSign(options?: API.RequestConfig) { return request<boolean>('/api/LgGigWorker/CanSign', { method: 'GET', ...(options || {}), }); } /** è·å人åå®å认è¯ç¶æ POST /api/LgGigWorker/CheckUserRealVerifyStatus */ export async function checkUserRealVerifyStatus( body: API.LgGigWorkerBaseInput, @@ -101,6 +124,14 @@ }); } /** è·åå½åçµåç¾ç±»å GET /api/LgGigWorker/GetCurrentSignType */ export async function getCurrentSignType(options?: API.RequestConfig) { return request<string>('/api/LgGigWorker/GetCurrentSignType', { method: 'GET', ...(options || {}), }); } /** è·åç²æ¹å表 POST /api/LgGigWorker/GetCustomerList */ export async function getCustomerList(body: API.GetCustomerListInput, options?: API.RequestConfig) { return request<API.GetCustomerListOutputPageOutput>('/api/LgGigWorker/GetCustomerList', { @@ -113,6 +144,24 @@ }); } /** è·åæ¨¡æ¿æç»ä¿¡æ¯ GET /api/LgGigWorker/GetCustomerTemplateDetail */ export async function getCustomerTemplateDetail( // å å çæçParamç±»å (ébodyåæ°swaggeré»è®¤æ²¡æçæå¯¹è±¡) params: API.APIgetCustomerTemplateDetailParams, options?: API.RequestConfig ) { return request<API.GetCustomerTemplateDetailOutput>( '/api/LgGigWorker/GetCustomerTemplateDetail', { method: 'GET', params: { ...params, }, ...(options || {}), } ); } /** è·åç²æ¹å®¢æ·å忍¡æ¿å表 GET /api/LgGigWorker/GetCustomerTemplateList */ export async function getCustomerTemplateList( // å å çæçParamç±»å (ébodyåæ°swaggeré»è®¤æ²¡æçæå¯¹è±¡) @@ -128,6 +177,21 @@ }); } /** è·åç²æ¹å®¢æ·å忍¡æ¿å表 POST /api/LgGigWorker/GetCustomerTemplateList */ export async function getCustomerTemplateList_2( body: API.QueryCustomerTemplateListInput, options?: API.RequestConfig ) { return request<API.GetCustomerTemplateListOutput[]>('/api/LgGigWorker/GetCustomerTemplateList', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); } /** è·åä¼ä¸è´¹ç¨ç»è®¡ GET /api/LgGigWorker/GetEnterinessLgGigSignFee */ export async function getEnterinessLgGigSignFee(options?: API.RequestConfig) { return request<API.EnterinessLgGigSignFeeOutput>('/api/LgGigWorker/GetEnterinessLgGigSignFee', { @@ -199,6 +263,36 @@ }); } /** æ ¹æ®bussinessCodeè·åå ¶çµåç¾éé GET /api/LgGigWorker/GetSignChannelByBussinessCode */ export async function getSignChannelByBussinessCode( // å å çæçParamç±»å (ébodyåæ°swaggeré»è®¤æ²¡æçæå¯¹è±¡) params: API.APIgetSignChannelByBussinessCodeParams, options?: API.RequestConfig ) { return request<API.SignChannelEnum>('/api/LgGigWorker/GetSignChannelByBussinessCode', { method: 'GET', params: { ...params, }, ...(options || {}), }); } /** æ ¹æ®signIdè·åå ¶çµåç¾éé GET /api/LgGigWorker/GetSignChannelBySignId */ export async function getSignChannelBySignId( // å å çæçParamç±»å (ébodyåæ°swaggeré»è®¤æ²¡æçæå¯¹è±¡) params: API.APIgetSignChannelBySignIdParams, options?: API.RequestConfig ) { return request<API.SignChannelEnum>('/api/LgGigWorker/GetSignChannelBySignId', { method: 'GET', params: { ...params, }, ...(options || {}), }); } /** è·åç»ä¸çµåç¾è´¹ç¨ POST /api/LgGigWorker/GetSignMergeSignCostList */ export async function getSignMergeSignCostList( body: API.GetSignCostListInput, @@ -253,6 +347,21 @@ ); } /** æ ¹æ®signChannelè·å计费æ¹å¼ GET /api/LgGigWorker/GetSignSettingByChannle */ export async function getSignSettingByChannle( // å å çæçParamç±»å (ébodyåæ°swaggeré»è®¤æ²¡æçæå¯¹è±¡) params: API.APIgetSignSettingByChannleParams, options?: API.RequestConfig ) { return request<API.ChargeTypeEnum>('/api/LgGigWorker/GetSignSettingByChannle', { method: 'GET', params: { ...params, }, ...(options || {}), }); } /** è·å客æ·ç²æ¹ä¸æå表 GET /api/LgGigWorker/GetUserCustomerAllList */ export async function getUserCustomerAllList( // å å çæçParamç±»å (ébodyåæ°swaggeré»è®¤æ²¡æçæå¯¹è±¡) packages/services/api/LgGigWorkerCustomerTemplateParam.ts
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,65 @@ /* eslint-disable */ // @ts-ignore import { request } from '@/utils/request'; /** æ·»å ç³»ç» æ¨¡æ¿æ°æ®åæ°åå ¸ POST /api/LgGigWorkerCustomerTemplateParam/AddSystemTemplateDataParamSetting */ export async function addSystemTemplateDataParamSetting( body: API.AddSystemTemplateDataParamSettingInput, options?: API.RequestConfig ) { return request<number>( '/api/LgGigWorkerCustomerTemplateParam/AddSystemTemplateDataParamSetting', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), } ); } /** è·åææç³»ç» æ¨¡æ¿æ°æ®åæ°åå ¸ POST /api/LgGigWorkerCustomerTemplateParam/GetAllSystemTemplateDataParamSettingList */ export async function getAllSystemTemplateDataParamSettingList(options?: API.RequestConfig) { return request<API.SystemTemplateDataParamSettingOutput[]>( '/api/LgGigWorkerCustomerTemplateParam/GetAllSystemTemplateDataParamSettingList', { method: 'POST', ...(options || {}), } ); } /** æ ¹æ®æ¨¡æ¿idè·å模æ¿åæ°å表 POST /api/LgGigWorkerCustomerTemplateParam/GetCustomerTemplateParamListByTemplateId */ export async function getCustomerTemplateParamListByTemplateId( // å å çæçParamç±»å (ébodyåæ°swaggeré»è®¤æ²¡æçæå¯¹è±¡) params: API.APIgetCustomerTemplateParamListByTemplateIdParams, options?: API.RequestConfig ) { return request<API.CustomerTemplateParamListOutput[]>( '/api/LgGigWorkerCustomerTemplateParam/GetCustomerTemplateParamListByTemplateId', { method: 'POST', params: { ...params, }, ...(options || {}), } ); } /** ä¿å模æ¿åæ° POST /api/LgGigWorkerCustomerTemplateParam/SaveCustomerTemplateParam */ export async function saveCustomerTemplateParam( body: API.SaveCustomerTemplateParamInput, options?: API.RequestConfig ) { return request<number>('/api/LgGigWorkerCustomerTemplateParam/SaveCustomerTemplateParam', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); } packages/services/api/LgGigWorkerSignChannelSetting.ts
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,72 @@ /* eslint-disable */ // @ts-ignore import { request } from '@/utils/request'; /** æ¤å¤å端没ææä¾æ³¨é POST /api/LgGigWorkerSignChannelSetting/CreateOrEditLgGigWorkerSignChannelSetting */ export async function createOrEditLgGigWorkerSignChannelSetting( body: API.CreateOrEditLgGigWorkerSignChannelSettingInput, options?: API.RequestConfig ) { return request<string>( '/api/LgGigWorkerSignChannelSetting/CreateOrEditLgGigWorkerSignChannelSetting', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), } ); } /** å 餿¸ éé 置管ç DELETE /api/LgGigWorkerSignChannelSetting/DeleteLgGigWorkerSignChannelSetting */ export async function deleteLgGigWorkerSignChannelSetting( // å å çæçParamç±»å (ébodyåæ°swaggeré»è®¤æ²¡æçæå¯¹è±¡) params: API.APIdeleteLgGigWorkerSignChannelSettingParams, options?: API.RequestConfig ) { return request<number>('/api/LgGigWorkerSignChannelSetting/DeleteLgGigWorkerSignChannelSetting', { method: 'DELETE', params: { ...params, }, ...(options || {}), }); } /** è·åæ¸ é管çå表 POST /api/LgGigWorkerSignChannelSetting/GetLgGigWorkerSignChannelSettingList */ export async function getLgGigWorkerSignChannelSettingList( body: API.GetGigWorkerSignChannelSettingInput, options?: API.RequestConfig ) { return request<API.LgGigWorkerSignChannelSettingDtoPageOutput>( '/api/LgGigWorkerSignChannelSetting/GetLgGigWorkerSignChannelSettingList', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), } ); } /** 设置é ç½®ç¶æ POST /api/LgGigWorkerSignChannelSetting/SetLgGigWorkerSignChannelSettingStatus */ export async function setLgGigWorkerSignChannelSettingStatus( body: API.SetSignChannelStatusInput, options?: API.RequestConfig ) { return request<number>( '/api/LgGigWorkerSignChannelSetting/SetLgGigWorkerSignChannelSettingStatus', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), } ); } packages/services/api/LgGigWorkerSignFreeSetting.ts
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,62 @@ /* eslint-disable */ // @ts-ignore import { request } from '@/utils/request'; /** æ°å¢ä¿®æ¹çµåç¾èµ é管ç POST /api/LgGigWorkerSignFreeSetting/CreateOrEditLgGigWorkerSignFreeSetting */ export async function createOrEditLgGigWorkerSignFreeSetting( body: API.CreateOrEditLgGigWorkerSignFreeSettingInput, options?: API.RequestConfig ) { return request<string>('/api/LgGigWorkerSignFreeSetting/CreateOrEditLgGigWorkerSignFreeSetting', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); } /** å é¤çµåç¾èµ é管ç DELETE /api/LgGigWorkerSignFreeSetting/DeleteLgGigWorkerSignFreeSetting */ export async function deleteLgGigWorkerSignFreeSetting( // å å çæçParamç±»å (ébodyåæ°swaggeré»è®¤æ²¡æçæå¯¹è±¡) params: API.APIdeleteLgGigWorkerSignFreeSettingParams, options?: API.RequestConfig ) { return request<number>('/api/LgGigWorkerSignFreeSetting/DeleteLgGigWorkerSignFreeSetting', { method: 'DELETE', params: { ...params, }, ...(options || {}), }); } /** è·åçµåç¾éé GET /api/LgGigWorkerSignFreeSetting/GetLgGigWorkerSignChannel */ export async function getLgGigWorkerSignChannel(options?: API.RequestConfig) { return request<API.LgGigWorkerSignChannelDto[]>( '/api/LgGigWorkerSignFreeSetting/GetLgGigWorkerSignChannel', { method: 'GET', ...(options || {}), } ); } /** è·åçµåç¾èµ é管çå表 POST /api/LgGigWorkerSignFreeSetting/GetLgGigWorkerSignFreeSettingList */ export async function getLgGigWorkerSignFreeSettingList( body: API.GetGigWorkerSignFreeSettingInput, options?: API.RequestConfig ) { return request<API.LgGigWorkerSignFreeSettingDtoPageOutput>( '/api/LgGigWorkerSignFreeSetting/GetLgGigWorkerSignFreeSettingList', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), } ); } packages/services/api/LgGigWorkerSignSetting.ts
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,66 @@ /* eslint-disable */ // @ts-ignore import { request } from '@/utils/request'; /** æ°å¢æä¿®æ¹çµåç¾è®¾ç½® POST /api/LgGigWorkerSignSetting/CreateOrEditLgGigWorkerSignSetting */ export async function createOrEditLgGigWorkerSignSetting( body: API.CreateOrEditLgGigWorkerSignSettingInput, options?: API.RequestConfig ) { return request<string>('/api/LgGigWorkerSignSetting/CreateOrEditLgGigWorkerSignSetting', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); } /** å é¤çµåç¾è®¾ç½® DELETE /api/LgGigWorkerSignSetting/DeleteLgGigWorkerSignSetting */ export async function deleteLgGigWorkerSignSetting( // å å çæçParamç±»å (ébodyåæ°swaggeré»è®¤æ²¡æçæå¯¹è±¡) params: API.APIdeleteLgGigWorkerSignSettingParams, options?: API.RequestConfig ) { return request<number>('/api/LgGigWorkerSignSetting/DeleteLgGigWorkerSignSetting', { method: 'DELETE', params: { ...params, }, ...(options || {}), }); } /** è·åçµåç¾é 置管çå表 POST /api/LgGigWorkerSignSetting/GetLgGigWorkerSignSettingList */ export async function getLgGigWorkerSignSettingList( body: API.GetGigWorkerSignSettingInput, options?: API.RequestConfig ) { return request<API.LgGigWorkerSignSettingDtoPageOutput>( '/api/LgGigWorkerSignSetting/GetLgGigWorkerSignSettingList', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), } ); } /** 设置çµåç¾è®¾ç½®ç¶æ POST /api/LgGigWorkerSignSetting/SetLgGigWorkerSignSettingStatus */ export async function setLgGigWorkerSignSettingStatus( body: API.SetSignStatusInput, options?: API.RequestConfig ) { return request<number>('/api/LgGigWorkerSignSetting/SetLgGigWorkerSignSettingStatus', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); } packages/services/api/LifePay.ts
¶Ô±ÈÐÂÎļþ @@ -0,0 +1,49 @@ /* eslint-disable */ // @ts-ignore import { request } from '@/utils/request'; /** åå»ºçæ´»ç¼´è´¹çµè´¹è®¢å POST /api/LifePay/CreateLifePayElectricOrder */ export async function createLifePayElectricOrder( body: API.LifeElectricDataCreateLifePayOrderInput, options?: API.RequestConfig ) { return request<any>('/api/LifePay/CreateLifePayElectricOrder', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); } /** åå»ºçæ´»ç¼´è´¹è¯è´¹è®¢å POST /api/LifePay/CreateLifePayPhoneOrder */ export async function createLifePayPhoneOrder( body: API.LifePhoneDataCreateLifePayOrderInput, options?: API.RequestConfig ) { return request<any>('/api/LifePay/CreateLifePayPhoneOrder', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); } /** è·åçµè´¹é¢å¼ GET /api/LifePay/GetElectricParValue */ export async function getElectricParValue(options?: API.RequestConfig) { return request<API.ElectricParValueResponse>('/api/LifePay/GetElectricParValue', { method: 'GET', ...(options || {}), }); } /** è·åè¯è´¹é¢å¼ GET /api/LifePay/GetPhoneParValue */ export async function getPhoneParValue(options?: API.RequestConfig) { return request<API.PhoneParValueResponse>('/api/LifePay/GetPhoneParValue', { method: 'GET', ...(options || {}), }); } packages/services/api/Test.ts
@@ -2,6 +2,21 @@ // @ts-ignore import { request } from '@/utils/request'; /** æ·»å ç³»ç» æ¨¡æ¿æ°æ®åæ°åå ¸ POST /api/Test/AddSystemTemplateDataParamSetting */ export async function addSystemTemplateDataParamSetting( body: API.AddSystemTemplateDataParamSettingInput, options?: API.RequestConfig ) { return request<any>('/api/Test/AddSystemTemplateDataParamSetting', { method: 'POST', headers: { 'Content-Type': 'application/json', }, data: body, ...(options || {}), }); } /** æå®ç¾çº¦ç¨æ·ï¼åèµ·ç¾çº¦ï¼è·åç¾çº¦å¯é¥ï¼æèµ·ç¾çº¦é¡µé¢ POST /api/Test/DataprepareCreate */ export async function dataprepareCreate(options?: API.RequestConfig) { return request<API.DataprepareCreateOutput>('/api/Test/DataprepareCreate', { @@ -114,6 +129,21 @@ }); } /** æ¤å¤å端没ææä¾æ³¨é GET /api/Test/TestQRCodePay */ export async function testQRCodePay( // å å çæçParamç±»å (ébodyåæ°swaggeré»è®¤æ²¡æçæå¯¹è±¡) params: API.APItestQRCodePayParams, options?: API.RequestConfig ) { return request<string>('/api/Test/TestQRCodePay', { method: 'GET', params: { ...params, }, ...(options || {}), }); } /** æ¤å¤å端没ææä¾æ³¨é GET /api/Test/TestRetturnResult */ export async function testRetturnResult( // å å çæçParamç±»å (ébodyåæ°swaggeré»è®¤æ²¡æçæå¯¹è±¡) packages/services/api/ThirdPartCallBack.ts
@@ -24,3 +24,11 @@ ...(options || {}), }); } /** ä¿¡ä»»ç¾å¼æ¥éç¥ POST /api/ThirdPartCallBack/SignorderNotify */ export async function signorderNotify(options?: API.RequestConfig) { return request<any>('/api/ThirdPartCallBack/SignorderNotify', { method: 'POST', ...(options || {}), }); } packages/services/api/index.ts
@@ -5,6 +5,7 @@ import * as AbpApiDefinition from './AbpApiDefinition'; import * as AbpApplicationConfiguration from './AbpApplicationConfiguration'; import * as Account from './Account'; import * as ACOOLYNotify from './ACOOLYNotify'; import * as AdvertiseBoard from './AdvertiseBoard'; import * as AdvertiseOnShow from './AdvertiseOnShow'; import * as Alipay from './Alipay'; @@ -43,7 +44,12 @@ import * as InsureOrganization from './InsureOrganization'; import * as InsureSupplier from './InsureSupplier'; import * as LgGigWorker from './LgGigWorker'; import * as LgGigWorkerCustomerTemplateParam from './LgGigWorkerCustomerTemplateParam'; import * as LgGigWorkerReCharge from './LgGigWorkerReCharge'; import * as LgGigWorkerSignChannelSetting from './LgGigWorkerSignChannelSetting'; import * as LgGigWorkerSignFreeSetting from './LgGigWorkerSignFreeSetting'; import * as LgGigWorkerSignSetting from './LgGigWorkerSignSetting'; import * as LifePay from './LifePay'; import * as Message from './Message'; import * as OpenInformation from './OpenInformation'; import * as OperateHistory from './OperateHistory'; @@ -86,6 +92,7 @@ AbpApiDefinition, AbpApplicationConfiguration, Account, ACOOLYNotify, AdvertiseBoard, AdvertiseOnShow, Alipay, @@ -124,7 +131,12 @@ InsureOrganization, InsureSupplier, LgGigWorker, LgGigWorkerCustomerTemplateParam, LgGigWorkerReCharge, LgGigWorkerSignChannelSetting, LgGigWorkerSignFreeSetting, LgGigWorkerSignSetting, LifePay, Message, OpenInformation, OperateHistory, packages/services/api/typings.d.ts
@@ -440,6 +440,17 @@ parentId?: string; } interface AddSystemTemplateDataParamSettingInput { /** æ°æ®åæ°åç§° */ dataParamName?: string; /** æ°æ®åæ°å段åç§° */ dataParamNameFieldName?: string; /** æ°æ®åæ°é»è®¤å¼ */ dataParamDefaultValue?: string; /** æ¯å¦ 䏿¯æ°å¼åæ°ï¼å³æ éå¼ */ isNotValueParam?: boolean; } interface AddTradeChatRecordInput { /** ç¨æ·id */ applyUserId?: string; @@ -462,6 +473,9 @@ bussinessCode?: string; /** 模æ¿åç§° */ name?: string; signChannel?: SignChannelEnum; /** 模æ¿ç¼è¾æ°æ® */ templateEditData?: string; } interface AddUpdateCustomerInput { @@ -779,6 +793,21 @@ prices?: PeriodPriceInfo[]; } interface AlipayEcsignNotifyInput { /** ç¾çº¦è®¢åå· */ signOrderNo?: string; /** åèµ·ç¾çº¦çä¸å¡æµæ°´å· */ outOrderNo?: string; /** 订åç¶æï¼INIT-åå§åï¼FAIL-ç¾çº¦å¤±è´¥ï¼SUCCESS-ç¾çº¦æå */ orderStatus?: string; /** ç¾çº¦æ¹æ¡ç */ solutionCode?: string; /** å建æ¶é´ */ gmtCreate?: string; /** æ´æ°æ¶é´ */ gmtModified?: string; } interface AlipayFundTransPagePayResponse { body?: string; } @@ -1018,6 +1047,18 @@ id?: string; } interface APIdeleteLgGigWorkerSignChannelSettingParams { id?: string; } interface APIdeleteLgGigWorkerSignFreeSettingParams { id?: string; } interface APIdeleteLgGigWorkerSignSettingParams { id?: string; } interface APIdeleteLgGigWorkerUserParams { id?: string; } @@ -1254,10 +1295,18 @@ moduleId?: string; } interface APIgetCustomerTemplateDetailParams { id?: string; } interface APIgetCustomerTemplateListParams { customerId?: string; } interface APIgetCustomerTemplateParamListByTemplateIdParams { templateId?: string; } interface APIgetDefaultConnectionStringParams { id?: string; } @@ -1582,6 +1631,14 @@ userId?: string; } interface APIgetSignChannelByBussinessCodeParams { bussinessCode?: string; } interface APIgetSignChannelBySignIdParams { signId?: string; } interface APIgetSignContractToOrderDtoParams { /** 订åç¾çº¦Id */ orderSignId?: string; @@ -1589,6 +1646,10 @@ searchType?: number; } interface APIgetSignSettingByChannleParams { signChannel?: SignChannelEnum; } interface APIgetStaffByIdNumParams { code: string; idNum?: string; @@ -1836,6 +1897,13 @@ transactionId?: string; } interface APItestQRCodePayParams { payType?: PayTypeEnum; outTradeNo?: string; description?: string; amount?: number; } interface APItestRetturnResultParams { phoneNumber?: string; } @@ -2855,6 +2923,8 @@ verificationCode: string; } type ChargeTypeEnum = 1 | 2; interface CheckBatchCreateCompanyUserInput { enterpriseName?: string; /** ç»ä¸ç¤¾ä¼ä¿¡ç¨ä»£ç */ @@ -4173,6 +4243,57 @@ status?: number; } interface CreateOrEditLgGigWorkerSignChannelSettingInput { id?: string; /** ééåç§° */ channelName?: string; /** ç¾çº¦ééId */ signChannelId?: string; /** æ¸ éId */ channelIntId?: number; /** æ¸ éURL */ channelUrl?: string; chargeType?: ChargeTypeEnum; /** å®å认è¯è´¹ç¨ */ realVerifyCost?: number; /** ç¾çº¦è´¹ç¨ */ signCost?: number; /** ç»ä¸ç¾çº¦è´¹ç¨ */ mergeSignCost?: number; /** ä¸ä¸ç¾æ¯å¦é ç½® */ isSetBestSign?: boolean; /** é¿éä¿¡ä»»ç¾é ç½® */ isSetAlipaySign?: boolean; } interface CreateOrEditLgGigWorkerSignFreeSettingInput { id?: string; /** ç¨æ·Id */ userId?: string; /** æ¸ éId */ signChannelId?: string; /** èµ éæ¡æ° */ freeCount?: number; /** 夿³¨ */ remark?: string; } interface CreateOrEditLgGigWorkerSignSettingInput { id?: string; /** åç§° */ name?: string; signChannel?: SignChannelEnum; /** å®å认è¯è´¹ç¨ */ realVerifyCost?: number; /** ç¾çº¦è´¹ç¨ */ signCost?: number; /** ç»ä¸ç¾çº¦è´¹ç¨ */ mergeSignCost?: number; chargeType?: ChargeTypeEnum; status?: LgGigWorkerSignStatus; settingStatus?: LgGigWorkerSignSettingStatus; } interface CreateOrEditMarketProductInput { id?: string; userId?: string; @@ -5132,6 +5253,8 @@ userServiceStaffName?: string; /** æ¯å¦å¥å±éåæ¾ */ isIncentivePayments?: boolean; /** çµåç¾èµ é */ isSignFreeSet?: boolean; /** æ³¨åæ¶é´ */ registTime?: string; } @@ -5157,6 +5280,26 @@ customerId?: string; } interface CustomerTemplateParamListOutput { id?: string; /** 模æ¿id */ lgGigWorkerCustomerTemplateId?: string; /** æ°æ®åæ°åå ¸id */ templateDataParamId?: string; /** 模æ¿åæ°åç§° */ templateParamName?: string; /** æ°æ®åç§° */ dataParamName?: string; /** 模æ¿åæ°å段åç§° */ templateParamFieldName?: string; /** æ°æ®åæ°å段åç§° */ dataParamNameFieldName?: string; /** 模æ¿åæ°å¼ ä» æ æ°æ®åæ°æ¶åå¨å¼ */ templateParamValue?: string; /** 模æ¿åæ°é¢å¤æ°æ® */ templateParamExtraData?: string; } interface DataprepareCreateExtInfo { contextParams?: string; shortUrl?: string; @@ -5308,6 +5451,29 @@ randomPwd?: string; } interface ElectricParValueOutput { electricType?: string; areaName?: string; parValue?: number; rate?: number; comments?: string; } interface ElectricParValueResponse { success?: string; requestNo?: string; partnerId?: string; service?: string; version?: string; protocol?: string; context?: string; ext?: string; code?: string; message?: string; detail?: string; electricParValue?: ElectricParValueOutput; } interface EnableSearchSettingInput { id: string; status: boolean; @@ -5352,6 +5518,7 @@ accountRemainAmount?: number; yesterdayFee?: number; oneWeekFee?: number; freeCount?: number; } interface EnterpriseBatchRefundInput { @@ -6297,6 +6464,8 @@ templateStatus?: boolean; /** ç¨æ·id */ companyId?: string; /** æ¯å¦æå¾ å¶ç */ hasPendingPlateMaking?: boolean; } interface GetCustomerListOutput { @@ -6316,6 +6485,8 @@ contactPhone?: string; /** ååæ°é */ contractCount?: number; /** å¾ å¶çæ° */ pendingPlateMakingCount?: number; /** å¹³å°ç¨æ·Id */ companyId?: string; /** å¹³å°ç¨æ·åç§° */ @@ -6335,6 +6506,23 @@ queryCondition?: string; } interface GetCustomerTemplateDetailOutput { id?: string; templateId?: string; templateUrl?: string; name?: string; bussinessCode?: string; creationTime?: string; signChannel?: SignChannelEnum; /** 模æ¿ç¼è¾æ°æ® */ templateEditData?: string; /** æ¨¡æ¿æ¸²æjsonæ°æ® */ templateJsonData?: string; creatorId?: string; /** æ¯å¦å¯ä»¥ç¼è¾åç§° */ isCanEditName?: boolean; } interface GetCustomerTemplateListOutput { id?: string; templateId?: string; @@ -6343,6 +6531,13 @@ name?: string; bussinessCode?: string; creationTime?: string; signPluginType?: SignChannelEnum; signChannel?: SignChannelEnum; status?: LgGigWorkerCustomerTemplateStatusEnum; /** å¶çæ¶é´ */ platedTime?: string; /** æä½äºº */ operator?: string; } interface GetEnterpriseCredentialDataResponse { @@ -6480,6 +6675,29 @@ enterpriseName?: string; } interface GetGigWorkerSignChannelSettingInput { pageModel?: Pagination; channelName?: string; settingStatus?: LgGigWorkerSignChannelSettingStatus; } interface GetGigWorkerSignFreeSettingInput { pageModel?: Pagination; /** ä¼ä¸åç§°/æ´æ°äºº/è´¦å· */ searchKeyWord?: string; /** å¼å§æä»½èå´ */ startMonth?: string; /** ç»ææä»½èå´ */ endMonth?: string; } interface GetGigWorkerSignSettingInput { pageModel?: Pagination; signName?: string; status?: LgGigWorkerSignStatus; settingStatus?: LgGigWorkerSignSettingStatus; } interface GetHeadlineInformationInput { /** æåºä¿¡æ¯ï¼é»è®¤æå¹¿åæåºAdSequenceååº */ orderInput?: OrderInput[]; @@ -7284,6 +7502,7 @@ interface GetLgGigWorkerContractUrlOutput { contractUrl?: string; signChannel?: SignChannelEnum; } interface GetLgGigWorkUserInput { @@ -7294,6 +7513,7 @@ regiterTimeBegin?: string; /** ç»è®°æ¶é´ç»æ */ regiterTimeEnd?: string; regiterStatus?: boolean; /** ç¾çº¦æ¶é´å¼å§æ¶é´ */ signTimeBegin?: string; /** ç¾çº¦æ¶é´ç»ææ¶é´ */ @@ -7796,6 +8016,8 @@ name?: string; /** çä¿¡ç±»å 10ä¸è¦ç´ è®¤è¯ */ verifyType?: number; /** çµè¯å·ç */ phone?: string; /** è´¹ç¨ */ cost?: number; } @@ -7860,6 +8082,8 @@ verifyType?: number; /** è´¹ç¨ */ cost?: number; /** çµè¯å·ç */ phone?: string; } interface GetSignRealNameCostListOutputPageOutput { @@ -11696,6 +11920,8 @@ realSignCount?: number; } type LgGigWorkerCustomerTemplateStatusEnum = 10 | 20; type LgGigWorkerRechargeStatusEnum = 10 | 30 | 40; interface LgGigWorkerRegisterInput { @@ -11710,6 +11936,78 @@ contractTemplateId?: string; } interface LgGigWorkerSignChannelDto { /** çµåç¾åç§° */ signName?: string; /** æ¸ éId */ signChannelId?: string; signChannel?: SignChannelEnum; } interface LgGigWorkerSignChannelSettingDto { id?: string; /** ééåç§° */ channelName?: string; /** ç¾çº¦ééId */ signChannelId?: string; /** æ¸ éId */ channelIntId?: number; /** æ¸ éURL */ channelUrl?: string; chargeType?: ChargeTypeEnum; /** å®å认è¯è´¹ç¨ */ realVerifyCost?: number; /** ç¾çº¦è´¹ç¨ */ signCost?: number; /** ç»ä¸ç¾çº¦è´¹ç¨ */ mergeSignCost?: number; /** ä¸ä¸ç¾æ¯å¦é ç½® */ isSetBestSign?: boolean; /** é¿éä¿¡ä»»ç¾é ç½® */ isSetAlipaySign?: boolean; settingStatus?: LgGigWorkerSignChannelSettingStatus; } interface LgGigWorkerSignChannelSettingDtoPageOutput { pageModel?: Pagination; objectData?: any; data?: LgGigWorkerSignChannelSettingDto[]; } type LgGigWorkerSignChannelSettingStatus = 10 | -10; interface LgGigWorkerSignFreeSettingDto { /** ç¨æ·Id */ userId?: string; /** çµåç¾æ¸ éId */ signChannelId?: string; /** çµåç¾æ¸ éåç§° */ signName?: string; /** èµ éæ¡æ° */ freeCount?: number; /** 夿³¨ */ remark?: string; id?: string; creationTime?: string; lastModificationTime?: string; lastModifierName?: string; lastModifierId?: string; /** 产ä¸ååºåç§° */ industrialParkName?: string; /** 产ä¸ååºId */ industrialParkId?: string; /** è´¦å· */ userName?: string; /** ä¼ä¸åç§° */ enterpriseName?: string; } interface LgGigWorkerSignFreeSettingDtoPageOutput { pageModel?: Pagination; objectData?: any; data?: LgGigWorkerSignFreeSettingDto[]; } interface LgGigWorkerSignOptions { accountName?: string; accountNo?: string; @@ -11717,6 +12015,32 @@ remark?: string; } interface LgGigWorkerSignSettingDto { id?: string; /** çµåç¾åç§° */ name?: string; signChannel?: SignChannelEnum; /** å®å认è¯è´¹ç¨ */ realVerifyCost?: number; /** ç¾çº¦è´¹ç¨ */ signCost?: number; /** ç»ä¸ç¾çº¦è´¹ç¨ */ mergeSignCost?: number; chargeType?: ChargeTypeEnum; status?: LgGigWorkerSignStatus; settingStatus?: LgGigWorkerSignSettingStatus; } interface LgGigWorkerSignSettingDtoPageOutput { pageModel?: Pagination; objectData?: any; data?: LgGigWorkerSignSettingDto[]; } type LgGigWorkerSignSettingStatus = 10 | -10; type LgGigWorkerSignStatus = 10 | -10; interface LgGigWorkerUserImport { /** ç¨æ·Id */ companyId?: string; @@ -11788,6 +12112,8 @@ enterSignStatus?: LgGigUserSignEnum; /** ä¼ä¸ç¾çº¦æ¶é´ */ enterSignTime?: string; regiterStatus?: boolean; signChannel?: SignChannelEnum; } interface LgGigWorkUserOutputPageOutput { @@ -11809,6 +12135,46 @@ legalPerson?: string; } interface LifeElectricData { /** å å¼é¢é¢ï¼åä½ä¸ºå ã */ parValue: number; /** çµç½ç±»åï¼ä¾å¦ï¼"guowang"代表å½å®¶çµç½ï¼"nanwang"ä»£è¡¨åæ¹çµç½ã */ electricType: string; /** çµè´¹ç±»åï¼å½ç½å¿ ä¼ ï¼ä½å® ãä¼äºä¸ãåºéºä¸ä¸ªé项ã */ electricAccountType: string; /** çµè´¹æ·å·ã */ electricAccount: string; /** ç份ã */ province: string; /** åå¸ã */ city: string; /** 客æ·èº«ä»½è¯å6ä½ï¼åç½å¿ ä¼ ã */ sixID?: string; } interface LifeElectricDataCreateLifePayOrderInput { userId?: string; lifePayType?: LifePayTypeEnum; productData?: LifeElectricData; } type LifePayTypeEnum = 10 | 20; interface LifePhoneData { /** è¿è¥åç¼ç ï¼ä¾å¦ï¼"yidong", "dianxin", "liantong"ã */ ispCode: string; /** å å¼é¢é¢ï¼åä½ä¸ºå ãæµè¯è´¦æ·ï¼parValue=100:ç¼´è´¹æåï¼parValue>100ï¼ç¼´è´¹å¤±è´¥ã */ parValue: number; /** ææºå·ã */ phone: string; } interface LifePhoneDataCreateLifePayOrderInput { userId?: string; lifePayType?: LifePayTypeEnum; productData?: LifePhoneData; } interface LikeFavoriteMessageInfo { /** æ¶æ¯Id */ id?: string; @@ -13072,7 +13438,8 @@ | 28 | 29 | 30 | 31; | 31 | 32; interface OrderChangedBzContentInput { outBizNo?: string; @@ -14464,7 +14831,7 @@ credential?: PersonalUserRegCredentialInput; } type PhoneMessageBusinessTypeEnum = 10 | 11 | 20 | 30 | 40 | 50 | 60 | 70 | 920; type PhoneMessageBusinessTypeEnum = 10 | 11 | 20 | 30 | 40 | 50 | 60 | 70 | 80 | 920; type PhoneMessageStatusEnum = 1 | 2 | 3; @@ -14484,6 +14851,30 @@ code: string; } interface PhoneParValueOutput { ispCode?: string; ispName?: string; parValue?: number; rate?: number; phoneSection?: string; comments?: string; } interface PhoneParValueResponse { success?: string; requestNo?: string; partnerId?: string; service?: string; version?: string; protocol?: string; context?: string; ext?: string; code?: string; message?: string; detail?: string; phoneParValue?: PhoneParValueOutput; } interface PhoneToken { phone?: string; phoneCode?: string; @@ -15440,6 +15831,20 @@ userId?: string; } interface QueryCustomerTemplateListInput { customerId?: string; searchKey?: string; status?: LgGigWorkerCustomerTemplateStatusEnum; /** å¼å§å¶çæ¶é´ */ beginPlatedTime?: string; /** ç»æå¶çæ¶é´ */ endPlatedTime?: string; /** å¼å§å¶ä¸ä¼ æ¶é´ */ beginCreationTime?: string; /** ç»æä¸ä¼ æ¶é´ */ endCreationTime?: string; } interface QueryEnterpriseMaterialDetailInput { id?: string; userId?: string; @@ -16198,6 +16603,7 @@ interface RecordUserSignInput { lgGigWorkerId?: string; signChannel?: SignChannelEnum; userType?: string; signCostType?: number; messageChannel?: number; @@ -16613,6 +17019,32 @@ receiptName?: string; } interface SaveCustomerTemplateParamInput { /** 模æ¿id */ lgGigWorkerCustomerTemplateId?: string; /** æ¨¡æ¿æ¸²æjsonæ°æ® */ templateJsonData?: string; /** åæ°å表 */ paramList?: SaveCustomerTemplateParamItem[]; } interface SaveCustomerTemplateParamItem { /** æ°æ®åæ°åå ¸id */ templateDataParamId?: string; /** 模æ¿åæ°åç§° */ templateParamName?: string; /** æ°æ®åç§° */ dataParamName?: string; /** 模æ¿åæ°å段åç§° */ templateParamFieldName?: string; /** æ°æ®åæ°å段åç§° */ dataParamNameFieldName?: string; /** 模æ¿åæ°å¼ ä» æ æ°æ®åæ°æ¶åå¨å¼ */ templateParamValue?: string; /** 模æ¿åæ°é¢å¤æ°æ® */ templateParamExtraData?: string; } interface SaveWalletPayChannelFeeSettingInput { /** ééid */ walletPayChannelId?: string; @@ -16963,6 +17395,19 @@ roleId?: string; } interface SetSignChannelStatusInput { id?: string; /** ä¸ä¸ç¾æ¯å¦é ç½® */ isSetBestSign?: boolean; /** é¿éä¿¡ä»»ç¾é ç½® */ isSetAlipaySign?: boolean; } interface SetSignStatusInput { id?: string; status?: LgGigWorkerSignStatus; } interface SetStatusInput { id?: string; /** -20 驳å 10æªæäº¤ 20å¾ å®¡æ ¸ 30 è¿è¡ä¸ 40 䏿¶ 50 ç³»ç»ä¸æ¶ */ @@ -17114,6 +17559,8 @@ verifyResult?: string; } type SignChannelEnum = 10 | 20; interface SignInfo { signUrl?: string; } @@ -17618,6 +18065,16 @@ type SystemNoticeStatusEnum = 10 | 20 | 30 | 40; interface SystemTemplateDataParamSettingOutput { id?: string; /** æ°æ®åæ°åç§° */ dataParamName?: string; /** æ°æ®åæ°å段åç§° */ dataParamNameFieldName?: string; /** æ°æ®åæ°é»è®¤å¼ */ dataParamDefaultValue?: string; } interface TagDto { /** æ ç¾Id */ id?: string; @@ -20049,6 +20506,7 @@ | 51 | 60 | 70 | 80 | 900 | 910 | 920; @@ -20736,7 +21194,7 @@ timeZoneId?: string; } type WxMiniAppEnum = 10 | 20; type WxMiniAppEnum = 10 | 20 | 30; interface WxMiniAppIndentityInfo { /** ä¼è¯å¯é¥ */ @@ -20745,6 +21203,7 @@ openId?: string; /** ç¨æ·åï¼è¯¥å¼ä¸ºç©ºåéææºææç»å½ï¼ä¸ä¸ºç©ºåå·²æè¯¥å°ç¨åºç¨æ·ï¼ */ userName?: string; unionId?: string; } interface WxMiniAppLoginInfo {