Commit d2623ff1 authored by zhengke's avatar zhengke

no message

parent f25cbcb7
import Api,{ HttpResponse, Result } from './../utils/request';
class CloudDiskService{
static async GetPPTCloudList(GName:String):Promise<HttpResponse>{
let msg = {GName}
return Api.Post("ppt_GetPPTCloudList",msg)
}
static async GetPPTCloudInfoPage(params:any):Promise<HttpResponse>{
return Api.Post("ppt_GetPPTCloudInfoPage",params)
}
static async RemovePPTCloudGroup(Id:Number):Promise<HttpResponse>{
let msg = {Id}
return Api.Post("ppt_RemovePPTCloudGroup",msg)
}
static async SetPPTCloudGroup(params:any):Promise<HttpResponse>{
return Api.Post("ppt_SetPPTCloudGroup",params)
}
}
export default CloudDiskService;
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment