You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
48 lines
1.3 KiB
using System;
|
|
using System.Data;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using QMFrameWork.Data.Attributes;
|
|
|
|
namespace QMAPP.Entity.QueryTL.Entity
|
|
{
|
|
/// <summary>
|
|
/// 查询模板排序设置
|
|
/// 创建者:李炳海
|
|
/// 创建日期:2014.8.11
|
|
/// </summary>
|
|
[Serializable]
|
|
[DBTable(TableName = "T_QM_TEMPLATESORT")]
|
|
public class T_QM_TEMPLATESORT:BaseEntity
|
|
{
|
|
/// <summary>
|
|
/// 主键
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "ID", DataType = DbType.String, IsKey = true)]
|
|
public string ID { get; set; }
|
|
|
|
/// <summary>
|
|
/// 字段名
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "COLUMNNAME", DataType = DbType.String)]
|
|
public string COLUMNNAME { get; set; }
|
|
|
|
/// <summary>
|
|
/// 是否升序
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "IFASC", DataType = DbType.String)]
|
|
public string IFASC { get; set; }
|
|
|
|
/// <summary>
|
|
/// 序号
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "SEQ", DataType = DbType.Int32)]
|
|
public int SEQ { get; set; }
|
|
|
|
/// <summary>
|
|
/// 模板主键
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "TEMPLATEID", DataType = DbType.String)]
|
|
public string TEMPLATEID { get; set; }
|
|
}
|
|
}
|
|
|