using System.ComponentModel;
using Core.Mes.Client.Comm.Attribute;
namespace Core.StlMes.Client.LgResMgt.Mcms.entity
{
///
/// 数据库表CMM_INPUT_RECORD所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:朱少波 时间:2020-12-01
///
public class CmmInputRecordEntity
{
///
/// id
///
private string recordId = "";
///
/// 磅房编号
///
private string recordLocation = "";
///
/// key
///
private string recordKey = "";
///
/// 类型 1- 车牌号
///
private string recordType = "";
///
/// 日期
///
private string recordDate = "";
///
/// 值
///
private string recordValue = "";
///
/// id
///
[Description("id")]
[Nullable(false)]
[DataLength(40)]
public string RecordId
{
get { return recordId; }
set { recordId = value; }
}
///
/// 磅房编号
///
[Description("磅房编号")]
[Nullable(true)]
[DataLength(30)]
public string RecordLocation
{
get { return recordLocation; }
set { recordLocation = value; }
}
///
/// key
///
[Description("key")]
[Nullable(true)]
[DataLength(30)]
public string RecordKey
{
get { return recordKey; }
set { recordKey = value; }
}
///
/// 类型 1- 车牌号
///
[Description("类型 1- 车牌号 ")]
[Nullable(true)]
[DataLength(50)]
public string RecordType
{
get { return recordType; }
set { recordType = value; }
}
///
/// 日期
///
[Description("日期")]
[Nullable(true)]
public string RecordDate
{
get { return recordDate; }
set { recordDate = value; }
}
///
/// 值
///
[Description("值")]
[Nullable(true)]
[DataLength(50)]
public string RecordValue
{
get { return recordValue; }
set { recordValue = value; }
}
}
}