#region
|
|
using System;
|
using System.Collections.Generic;
|
|
#endregion
|
|
namespace CSFrameworkV5.Interfaces.InterfaceModels
|
{
|
/// <summary>
|
/// 我的查询配置信息:DataRow转换Object
|
/// </summary>
|
public class MyConfigData
|
{
|
public MyConfigData()
|
{
|
isid = 0;
|
Name = "";
|
AllFields = new List<FieldNameDef>();
|
AllSelectedFields = new List<FieldNameDef>();
|
UserID = "";
|
}
|
|
public MyConfigData(int isid, string name, DateTime createDate)
|
{
|
this.isid = isid;
|
Name = name;
|
CreateDate = createDate;
|
AllFields = new List<FieldNameDef>();
|
AllSelectedFields = new List<FieldNameDef>();
|
UserID = "";
|
}
|
|
/// <summary>
|
/// 所有可选字段
|
/// </summary>
|
public List<FieldNameDef> AllFields { get; set; }
|
|
/// <summary>
|
/// 已选字段
|
/// </summary>
|
public List<FieldNameDef> AllSelectedFields { get; set; }
|
|
/// <summary>
|
/// 业务名称,如销售单、生产单
|
/// </summary>
|
public string BusinessName { get; set; }
|
|
/// <summary>
|
/// 创建日期
|
/// </summary>
|
public DateTime CreateDate { get; set; }
|
|
/// <summary>
|
/// 记录编号
|
/// </summary>
|
public int isid { get; set; }
|
|
/// <summary>
|
/// 配置名称
|
/// </summary>
|
public string Name { get; set; }
|
|
/// <summary>
|
/// 配置的SQL脚本
|
/// </summary>
|
public string SQL { get; set; }
|
|
/// <summary>
|
/// 用户编号
|
/// </summary>
|
public string UserID { get; set; }
|
}
|
}
|