using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using System.Text;
namespace TEAMModelOS.Service.Models.Learn
{
///
/// 作业附件
///
public class ProcessRes
{
///
/// 文件名字
///
[Required(ErrorMessage = "{0} 必须填写")]
public string fileName { get; set; }
///
///
///
[Required(ErrorMessage = "{0} 必须填写")]
public string blobUrl { get; set; }
public int order { get; set; }
///
/// 文件大小
///
public long size { get; set; }
///
/// 缩略图链接 图片视频有 文件没有
///
public string compressUrl { get; set; }
///
/// 文件类型
///
public string type { get; set; }
}
}