using System;
namespace Core.StlMes.Client.Qcm
{
///
/// 数据库表COM_BASE_SPEC所对应的实体类(生成工具:代码生成工具2.0)
///
public class ComBaseSpecEntity
{
///
/// 产品规格代码
///
private string specCode;
///
/// 产品规格描述
///
private string specName;
///
/// 外径
///
private string dimater;
///
/// 壁厚
///
private string height;
///
/// 米单重(0.2466*壁厚*(外径-壁厚)*钢种系数)
///
private string weight;
///
/// 类型(A钢管(必须要填外径壁厚)、B管坯(只允许填外径)、C其它(要走接箍或附件的,不能填外径壁厚))
///
private string mscStyle;
///
/// 创建人
///
private string createName;
///
/// 创建时间
///
private string createTime;
///
/// 修改人
///
private string updateName;
///
/// 修改时间
///
private string updateTime;
///
/// 删除人
///
private string deleteName;
///
/// 删除时间
///
private string deleteTime;
///
/// 有效标志(1:有效,0:无效)
///
private string validflag;
///
/// 备注
///
private string memo;
public ComBaseSpecEntity()
{
specCode = "";
specName = "";
dimater = "";
height = "";
weight = "";
mscStyle = "";
createName = "";
createTime = "";
updateName = "";
updateTime = "";
deleteName = "";
deleteTime = "";
validflag = "";
memo = "";
}
///
/// 产品规格代码
///
[Field(true, FieldAttributeType.NoQueryField)]
public string SpecCode
{
get { return specCode; }
set { specCode = value; }
}
///
/// 产品规格描述
///
[Field(true, FieldAttributeType.NoQueryField)]
public string SpecName
{
get { return specName; }
set { specName = value; }
}
///
/// 外径
///
[Field(true, FieldAttributeType.NoQueryField)]
public string Dimater
{
get { return dimater; }
set { dimater = value; }
}
///
/// 壁厚
///
[Field(true, FieldAttributeType.NoQueryField)]
public string Height
{
get { return height; }
set { height = value; }
}
///
/// 米单重(0.2466*壁厚*(外径-壁厚)*钢种系数)
///
[Field(true, FieldAttributeType.NoQueryField)]
public string Weight
{
get { return weight; }
set { weight = value; }
}
///
/// 类型(A钢管(必须要填外径壁厚)、B管坯(只允许填外径)、C其它(要走接箍或附件的,不能填外径壁厚))
///
[Field(true, FieldAttributeType.NoQueryField)]
[Nullable(false)]
public string MscStyle
{
get { return mscStyle; }
set { mscStyle = value; }
}
///
/// 创建人
///
[UserInfo(UserInfoAttributeType.UserName)]
public string CreateName
{
get { return createName; }
set { createName = value; }
}
///
/// 创建时间
///
public string CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 修改人
///
[UserInfo(UserInfoAttributeType.UserName)]
public string UpdateName
{
get { return updateName; }
set { updateName = value; }
}
///
/// 修改时间
///
public string UpdateTime
{
get { return updateTime; }
set { updateTime = value; }
}
///
/// 删除人
///
[UserInfo(UserInfoAttributeType.UserName)]
public string DeleteName
{
get { return deleteName; }
set { deleteName = value; }
}
///
/// 删除时间
///
public string DeleteTime
{
get { return deleteTime; }
set { deleteTime = value; }
}
///
/// 有效标志(1:有效,0:无效)
///
public string Validflag
{
get { return validflag; }
set { validflag = value; }
}
///
/// 备注
///
[Field(true, FieldAttributeType.NoQueryField)]
public string Memo
{
get { return memo; }
set { memo = value; }
}
}
}