using System;
using System.Collections.Generic;
using System.Text;
namespace TEAMModelOS.SDK.Models
{
public class StandardFile : CosmosEntity
{
///
/// id为区域编码,pk='StandardFile',code="StandardFile"
///
public StandardFile()
{
pk = "StandardFile";
code = "StandardFile";
}
public string standard { get; set; }
///
///
///
public List policy { get; set; }= new List();
public List resource { get; set; }= new List();
public List third { get; set; }= new List();
}
public class Policy {
public string tag { get; set; }
public List links { get; set; }
}
public class Link {
public string thum { get; set; }
public string subtitle { get; set; }
public string content { get; set; }
///
/// 文件名字
///
public string name { get; set; }
///
///
///
public string url { get; set; }
///
/// 文件大小
///
public long size { get; set; }
///
/// 创建时间
///
public long createTime { get; set; }
///
/// 文件后缀
///
public string extension { get; set; }
///
/// 文件类型
///
public string type { get; set; }
///
/// 发布机构
///
public string org { get; set; }
///
/// 报告人/作者
///
public string author { get; set; }
///
/// 排序标识
///
public int index { get; set; }
}
}