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.
28 lines
630 B
28 lines
630 B
4 years ago
|
using System;
|
||
|
using System.Data;
|
||
|
using System.Text;
|
||
|
using QMFrameWork.Data.Attributes;
|
||
|
using QMAPP.Entity.Sys.Entity;
|
||
|
|
||
|
namespace QMAPP.Entity.Sys
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 数据处理任务日志
|
||
|
/// 作 者:李炳海
|
||
|
/// 编写日期:2015年05月20日
|
||
|
/// </summary>
|
||
|
[DBTable(TableName = "T_QM_DATATASKLOG")]
|
||
|
public class DataTaskLog:T_QM_DATATASKLOG
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// 开始时间
|
||
|
/// </summary>
|
||
|
public string StartTime { get; set; }
|
||
|
|
||
|
/// <summary>
|
||
|
/// 截止时间
|
||
|
/// </summary>
|
||
|
public string EndTime { get; set; }
|
||
|
}
|
||
|
}
|