zhengyiming
2 天以前 64eb1c2ebfc25f11f5757a0eef04de230fa8fa15
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 || {}),
  });
}