using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using QMAPP.Entity;
using QMFrameWork.Data.Attributes;
using System.Data;
namespace QMAPP.FJC.Entity.ProduceManage
{
///
/// 模块编号:返修原因
/// 作 用:
/// 作 者:闫永刚
/// 编写日期:2016年08月17日
///
[DBTable(TableName = "T_AW_MENDERREASON", TimeStampColumn = "UPDATEDATE")]
public class MenderReason : BaseEntity
{
///
///
///
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
public string PID { get; set; }
///
///
///
[DBColumn(ColumnName = "PPID", DataType = DbType.String)]
public string PPID { get; set; }
///
///
///
[DBColumn(ColumnName = "DEFECTKEY", DataType = DbType.String)]
public string DEFECTKEY { get; set; }
///
///
///
[DBColumn(ColumnName = "DEFECTVALUE", DataType = DbType.String)]
public string DEFECTVALUE { get; set; }
[DBColumn(ColumnName = "POSITION", DataType = DbType.String)]
public string POSITION { get; set; }
///
///
///
[DBColumn(ColumnName = "CREATEUSER", DataType = DbType.String)]
public string CREATEUSER { get; set; }
///
///
///
[DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime)]
public DateTime CREATEDATE { get; set; }
///
///
///
[DBColumn(ColumnName = "UPDATEUSER", DataType = DbType.String)]
public string UPDATEUSER { get; set; }
///
///
///
[DBColumn(ColumnName = "UPDATEDATE", DataType = DbType.DateTime)]
public DateTime UPDATEDATE { get; set; }
///
/// 错误信息
///
public string InfoError { get; set; }
///
/// 导入时判断添加修改
///
public bool IsNewInfo { get; set; }
}
}