using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace PCRobot.Entitys { /// /// 图片上传返回的数据类 /// public class UpLoadImage { /// /// /// public Data data { get; set; } /// /// /// public int type { get; set; } } public class BaseResponse { /// /// /// public int ret { get; set; } } public class BufferUrl { /// /// /// public int type { get; set; } /// /// /// public string url { get; set; } } public class ThumbUrls { /// /// /// public int type { get; set; } /// /// /// public string url { get; set; } } public class Data { /// /// /// public BaseResponse baseResponse { get; set; } /// /// /// public BufferUrl bufferUrl { get; set; } /// /// /// public string clientId { get; set; } /// /// /// public int id { get; set; } /// /// D:\公司项目\fl_system\PCRobot\bin\Debug\Cache\0728114016639.png /// public string path { get; set; } /// /// /// public int startPos { get; set; } /// /// /// public int thumbUrlCount { get; set; } /// /// /// public List thumbUrls { get; set; } /// /// /// public int totalLen { get; set; } /// /// /// public int type { get; set; } } }