using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SmartCoalApplication.Base.FunctionModel
{
///
/// 导出项目-分析使用类
///
public class ExportProjectModel
{
///
/// 主键名
///
public string tagName { get; set; }
///
/// 图片名称
///
public string picName { get; set; }
///
/// 自行拼接的中间数据
///
public List> dataList { get; set; }
}
}