using System;
using System.Collections.Generic;
using System.Text;
namespace TEAMModelOS.SDK.Models
{
///
/// 内容上传记录
///
public class Bloblog :CosmosEntity
{
public string name { get; set; }
public string url { get; set; }
public long time { get; set; }
public string hash { get; set; }
public long size { get; set; }
public List periodId { get; set; } = new List() { "" };
public List subjectId { get; set; } = new List() { "" };
public List gradeId { get; set; } = new List() { "" };
///
/// audio 音频,video 视频 ,doc文档,image图片,other 其他,res教材,thum缩略图,avatar 头像,课堂记录records
///
public string type { get; set; }
public string ext { get; set; }
}
public class BlobFile : CosmosEntity
{
///
/// id为文件的hash值
///
///
/// paths 文件的路径。
///
public HashSet paths { get; set; } = new HashSet();
public long time { get; set; }
public long size { get; set; }
///
/// standard 研修平台, 内容 content,
///
public string source { get; set; }
}
}