using Core.Mes.Client.Comm.Attribute;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace Core.StlMes.Client.PnCost.Models
{
///
/// 数据库表COST_CALCULATION_ERROR所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:doubi-PC 时间:2016-11-18
///
public class CostCalculationErrorEntity
{
///
/// 无注释
///
private string errorTime = "";
///
/// 错误日志
///
private string errorText = "";
///
/// 错误来源,存储过程名
///
private string errorFrom = "";
///
/// 无注释
///
[Description("错误时间")]
[Nullable(false)]
public string ErrorTime
{
get { return errorTime; }
set { errorTime = value; }
}
///
/// 错误日志
///
[Description("错误日志")]
[Nullable(true)]
[DataLength(2000)]
public string ErrorText
{
get { return errorText; }
set { errorText = value; }
}
///
/// 错误来源,存储过程名
///
[Description("错误来源,存储过程名")]
[Nullable(true)]
[DataLength(100)]
public string ErrorFrom
{
get { return errorFrom; }
set { errorFrom = value; }
}
}
}