using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PMS.BusinessModels { /// /// 文件上传返回的结果 /// public class FtpUploadResult { /// /// Code为200表示成功 /// public int code { set; get; } /// /// 错误消息内容 /// public string errormessage { set; get; } /// /// 返回的附件编号 /// public string data { set; get; } } /// /// FTPURL地址 /// public class FtpUrlList { public string fileid { set; get; } public string filepath { set; get; } } public class FtpUrlResult { /// /// Code为200表示成功 /// public int code { set; get; } /// /// 错误消息内容 /// public string errormessage { set; get; } /// /// 返回的附件编号 /// public List data { set; get; } } }