You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
814 B
34 lines
814 B
import { RzRequest } from '@/utils/request';
|
|
|
|
export type batchSaasAddCompanyUserReq = {
|
|
companyId: number;
|
|
isPersonalAccpunt: number;
|
|
isCard: number;
|
|
names: string;
|
|
enableOnlineRecharge: number;
|
|
phones: string;
|
|
companyMinChargeBalance: string;
|
|
enableOnlineRefund: number;
|
|
};
|
|
|
|
export const batchSaasAddCompanyUser = async (params: batchSaasAddCompanyUserReq) => {
|
|
const res = await RzRequest.postNew(
|
|
'/stationapi/saas/company/batchSaasAddCompanyUser',
|
|
params
|
|
);
|
|
return res;
|
|
};
|
|
|
|
export type testPostWithAuth = {
|
|
xm: string;
|
|
xb: string;
|
|
yw_id: number;
|
|
};
|
|
|
|
export const test = async (params: testPostWithAuth) => {
|
|
const res = await RzRequest.postNew(
|
|
'/ZhuQue/Ylt/testPostWithAuth',
|
|
params
|
|
);
|
|
return res;
|
|
}; |