wupengfei
8 天以前 a7eb20b8f5692171cc48babc24edffc3351a78ab
1
2
3
4
5
6
7
8
9
10
11
/* eslint-disable */
// @ts-ignore
import { request } from '@/utils/request';
 
/** 同步客户材料 POST /api/WaterDropCloud/SyncCompanyMaterial */
export async function syncCompanyMaterial(options?: API.RequestConfig) {
  return request<any>('/api/WaterDropCloud/SyncCompanyMaterial', {
    method: 'POST',
    ...(options || {}),
  });
}