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.
33 lines
826 B
33 lines
826 B
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using QMFrameWork.Data.Attributes;
|
|
using System.Data;
|
|
|
|
namespace QMAPP.FJC.Entity.Operation
|
|
{
|
|
[DBTable(TableName = "T_AW_INPUTVALUE")]
|
|
public class InputValue
|
|
{
|
|
/// <summary>
|
|
///
|
|
/// </summary>
|
|
[DBColumn(ColumnName = "PID", DataType = DbType.String, IsKey = true)]
|
|
public string 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; }
|
|
|
|
}
|
|
}
|
|
|