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.
83 lines
2.0 KiB
83 lines
2.0 KiB
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.Operation
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[DBTable(TableName = "T_AW_PRODUCTCHECK")]
|
|
public class ProductCheck : BaseEntity
|
|
{
|
|
|
|
///<summary>
|
|
///主键
|
|
///</summary>
|
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
///<summary>
|
|
///条码号
|
|
///</summary>
|
|
[DBColumn(ColumnName = "PRODUCTCODE", DataType = DbType.String)]
|
|
public string PRODUCTCODE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///物料号
|
|
///</summary>
|
|
[DBColumn(ColumnName = "MATERIAL_CODE", DataType = DbType.String)]
|
|
public string MATERIAL_CODE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///抽检结果
|
|
///</summary>
|
|
[DBColumn(ColumnName = "CHECKRESULT", DataType = DbType.String)]
|
|
public string CHECKRESULT { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///抽检类型
|
|
///</summary>
|
|
[DBColumn(ColumnName = "PRODUCTCHECKTYPE", DataType = DbType.String)]
|
|
public string PRODUCTCHECKTYPE { get; set; }
|
|
|
|
|
|
|
|
///<summary>
|
|
///抽检日期
|
|
///</summary>
|
|
[DBColumn(ColumnName = "CREATEUSER", DataType = DbType.String)]
|
|
public string CREATEUSER { get; set; }
|
|
public string CREATEUSERNAME { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///抽检时间
|
|
///</summary>
|
|
[DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime)]
|
|
public DateTime CREATEDATE { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
public DateTime CREATEDATESTART { get; set; }
|
|
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
public DateTime CREATEDATEEND { get; set; }
|
|
|
|
|
|
//public string PRODUCEDATE { get; set; }
|
|
|
|
public string MATERIAL_NAME { get; set; }
|
|
}
|
|
}
|
|
|