using System; using System.Collections.Generic; using System.Text; namespace AI.Platform.Service.Output { public class Response { public int code { set; get; } public bool isSuccess { set; get; } public string message { set; get; } public T data { set; get; } } /// /// 用于多媒体文件上传返回响应内容 /// public class MediaFileUploadOutput { /// /// 是否成功 /// public bool isSuccess { set;get; } /// /// 说明 /// public string msg { set; get; } /// /// 存到服务器的地址 /// public string savePath { set; get; } /// /// 文件名 /// public string fileName { set; get; } /// /// 加上guid前缀文件名 /// public string guidName { set; get; } /// /// 后缀名 /// public string extension { set; get; } } public class PlayAbleMedia { public long id { set; get; } public string guidFileName { set; get; } public int startTime { set; get; } public int endTime { set; get; } public List machineState { set; get; } } }