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.
21 lines
542 B
21 lines
542 B
12 months ago
|
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 resTest = async (params: batchSaasAddCompanyUserReq) => {
|
||
|
const res = await RzRequest.postNew(
|
||
|
'/stationapi/saas/company/batchSaasAddCompanyUser',
|
||
|
params
|
||
|
);
|
||
|
console.log(res)
|
||
|
return res;
|
||
|
};
|