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.
56 lines
1.4 KiB
56 lines
1.4 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
|
|
{
|
|
[DBTable(TableName = "T_AW_CHECKVALUEITEM")]
|
|
public class CheckValueItem : BaseEntity
|
|
{
|
|
///<summary>
|
|
///主键
|
|
///</summary>
|
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
|
public string PID { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///抽检表主键
|
|
///</summary>
|
|
[DBColumn(ColumnName = "PRODUCTCHECK_PID", DataType = DbType.String)]
|
|
public string PRODUCTCHECK_PID { get; set; }
|
|
|
|
|
|
///<summary>
|
|
///抽检项编码
|
|
///</summary>
|
|
[DBColumn(ColumnName = "CHECKITEMCODE", DataType = DbType.String)]
|
|
public string CHECKITEMCODE { get; set; }
|
|
|
|
///<summary>
|
|
///检测值
|
|
///</summary>
|
|
[DBColumn(ColumnName = "INPUTVALUE", DataType = DbType.String)]
|
|
public string INPUTVALUE { get; set; }
|
|
|
|
|
|
|
|
///<summary>
|
|
///操作时间
|
|
///</summary>
|
|
[DBColumn(ColumnName = "CREATEDATE", DataType = DbType.DateTime)]
|
|
public DateTime CREATEDATE { get; set; }
|
|
|
|
///<summary>
|
|
///操作用户
|
|
///</summary>
|
|
[DBColumn(ColumnName = "CREATEUSER", DataType = DbType.String)]
|
|
public string CREATEUSER { get; set; }
|
|
|
|
|
|
}
|
|
}
|
|
|