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.
|
|
|
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
|
|
|
|
);
|
|
|
|
console.log(res)
|
|
|
|
return res;
|
|
|
|
};
|