20 lines
445 B
20 lines
445 B
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.21
|
|
/// </summary>
|
|
[DBTable(TableName = "T_QM_PROGRAMTEMPLATE")]
|
|
public class ProgramTemplate:T_QM_PROGRAMTEMPLATE
|
|
{
|
|
|
|
}
|
|
}
|
|
|