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.
22 lines
458 B
22 lines
458 B
4 years ago
|
using System;
|
||
|
using System.Data;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
using QMAPP.Entity.QueryTL.Entity;
|
||
|
|
||
|
namespace QMAPP.Entity.QueryTL
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 查询模板列设置
|
||
|
/// 创建者:李炳海
|
||
|
/// 创建日期:2014.8.10
|
||
|
/// </summary>
|
||
|
[Serializable]
|
||
|
[DBTable(TableName = "T_QM_TEMPLATECOLUMN")]
|
||
|
public class TemplateColumn:T_QM_TEMPLATECOLUMN
|
||
|
{
|
||
|
|
||
|
}
|
||
|
}
|