using Core.Mes.Client.Comm.Attribute;
using Newtonsoft.Json;
using System;
using System.ComponentModel;
namespace Core.StlMes.Client.Qcm.model
{
///
/// 数据库表COM_PSC所对应的实体类(生成工具:代码生成工具1.0)
/// 作者:tgcx-test 时间:2016-05-18
///
public class ComPscEntity
{
///
/// 产品规范码
///
private string psc = "";
///
/// 产品规范描述
///
private string pscDesc = "";
///
/// 品名代码
///
private string produccode = "";
///
/// 品名描述
///
private string producname = "";
///
/// 标准代码
///
private string stdCode = "";
///
/// 标准名称
///
private string stdName = "";
///
/// 钢级(牌号)代码
///
private string steelcode = "";
///
/// 钢级(牌号)名称
///
private string steelname = "";
///
/// 标准类别代码
///
private string stdStyle = "";
///
/// 标准类别描述(PSL1....)
///
private string stdStyleDesc = "";
///
/// 新产品代码
///
private string newProcCode = "";
///
/// 新产品描述
///
private string newProcDesc = "";
///
/// 管理部门代码
///
private string departmentCode = "";
///
/// 管理部门描述
///
private string departmentDesc = "";
///
/// 管理科室代码
///
private string unitCode = "";
///
/// 自动判定标识(是否自动判定)
///
private string autojudge = "";
///
/// 管理科室描述
///
private string unitDesc = "";
///
/// 创建人
///
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 = "";
///
/// {老系统}产品规范码
///
private string pscOld = "";
///
/// 产品大类(4049)
///
private string producHead = "";
///
/// 品名类型(冶金规范类型----钢管(坯)、套管+接箍、附件短节、接箍、双公短节)
///
private string producType = "";
///
/// 品种大类代码(4050)--销售分类
///
private string producStyle = "";
///
/// 品种大类描述
///
private string producDesc = "";
///
/// 压缩比
///
private decimal? compressionRatio = null;
///
/// 产品规范码
///
[Description("产品规范码")]
[Nullable(false)]
[DataLength(20)]
[JsonProperty("psc")]
public string Psc
{
get { return psc; }
set { psc = value; }
}
///
/// 产品规范描述
///
[Description("产品规范描述")]
[Nullable(true)]
[DataLength(500)]
[JsonProperty("pscDesc")]
public string PscDesc
{
get { return pscDesc; }
set { pscDesc = value; }
}
///
/// 品名代码
///
[Description("品名代码")]
[Nullable(true)]
[DataLength(20)]
[JsonProperty("produccode")]
public string Produccode
{
get { return produccode; }
set { produccode = value; }
}
///
/// 品名描述
///
[Description("品名描述")]
[Nullable(true)]
[DataLength(100)]
[JsonProperty("producname")]
public string Producname
{
get { return producname; }
set { producname = value; }
}
///
/// 标准代码
///
[Description("标准代码")]
[Nullable(false)]
[DataLength(20)]
[JsonProperty("stdCode")]
public string StdCode
{
get { return stdCode; }
set { stdCode = value; }
}
///
/// 标准名称
///
[Description("标准名称")]
[Nullable(true)]
[DataLength(200)]
[JsonProperty("stdName")]
public string StdName
{
get { return stdName; }
set { stdName = value; }
}
///
/// 钢级(牌号)代码
///
[Description("钢级(牌号)代码")]
[Nullable(false)]
[DataLength(10)]
[JsonProperty("steelcode")]
public string Steelcode
{
get { return steelcode; }
set { steelcode = value; }
}
///
/// 钢级(牌号)名称
///
[Description("钢级(牌号)名称")]
[Nullable(true)]
[DataLength(100)]
[JsonProperty("steelname")]
public string Steelname
{
get { return steelname; }
set { steelname = value; }
}
///
/// 标准类别代码
///
[Description("标准类别代码")]
[Nullable(true)]
[DataLength(20)]
[JsonProperty("stdStyle")]
public string StdStyle
{
get { return stdStyle; }
set { stdStyle = value; }
}
///
/// 标准类别描述(PSL1....)
///
[Description("标准类别描述(PSL1....)")]
[Nullable(true)]
[DataLength(50)]
[JsonProperty("stdStyleDesc")]
public string StdStyleDesc
{
get { return stdStyleDesc; }
set { stdStyleDesc = value; }
}
///
/// 新产品代码
///
[Description("新产品代码")]
[Nullable(true)]
[DataLength(1)]
[JsonProperty("newProcCode")]
public string NewProcCode
{
get { return newProcCode; }
set { newProcCode = value; }
}
///
/// 新产品描述
///
[Description("新产品描述")]
[Nullable(true)]
[DataLength(200)]
[JsonProperty("newProcDesc")]
public string NewProcDesc
{
get { return newProcDesc; }
set { newProcDesc = value; }
}
///
/// 管理部门代码
///
[Description("管理部门代码")]
[Nullable(true)]
[DataLength(20)]
[JsonProperty("departmentCode")]
public string DepartmentCode
{
get { return departmentCode; }
set { departmentCode = value; }
}
///
/// 管理部门描述
///
[Description("管理部门描述")]
[Nullable(true)]
[DataLength(100)]
[JsonProperty("departmentDesc")]
public string DepartmentDesc
{
get { return departmentDesc; }
set { departmentDesc = value; }
}
///
/// 管理科室代码
///
[Description("管理科室代码")]
[Nullable(true)]
[DataLength(20)]
[JsonProperty("unitCode")]
public string UnitCode
{
get { return unitCode; }
set { unitCode = value; }
}
///
/// 自动判定标识(是否自动判定)
///
[Description("自动判定标识(是否自动判定)")]
[Nullable(true)]
[DataLength(1)]
[JsonProperty("autojudge")]
public string Autojudge
{
get { return autojudge; }
set { autojudge = value; }
}
///
/// 管理科室描述
///
[Description("管理科室描述")]
[Nullable(true)]
[DataLength(100)]
[JsonProperty("unitDesc")]
public string UnitDesc
{
get { return unitDesc; }
set { unitDesc = value; }
}
///
/// 创建人
///
[Description("创建人")]
[Nullable(true)]
[DataLength(20)]
[JsonProperty("createName")]
public string CreateName
{
get { return createName; }
set { createName = value; }
}
///
/// 创建时间
///
[Description("创建时间")]
[Nullable(true)]
[JsonProperty("createTime")]
public string CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 修改人
///
[Description("修改人")]
[Nullable(true)]
[DataLength(20)]
[JsonProperty("updateName")]
public string UpdateName
{
get { return updateName; }
set { updateName = value; }
}
///
/// 修改时间
///
[Description("修改时间")]
[Nullable(true)]
[JsonProperty("updateTime")]
public string UpdateTime
{
get { return updateTime; }
set { updateTime = value; }
}
///
/// 删除人
///
[Description("删除人")]
[Nullable(true)]
[DataLength(20)]
[JsonProperty("deleteName")]
public string DeleteName
{
get { return deleteName; }
set { deleteName = value; }
}
///
/// 删除时间
///
[Description("删除时间")]
[Nullable(true)]
[JsonProperty("deleteTime")]
public string DeleteTime
{
get { return deleteTime; }
set { deleteTime = value; }
}
///
/// 有效标志(1:有效,0:无效)
///
[Description("有效标志(1:有效,0:无效)")]
[Nullable(false)]
[DataLength(1)]
[JsonProperty("validflag")]
public string Validflag
{
get { return validflag; }
set { validflag = value; }
}
///
/// 备注
///
[Description("备注")]
[Nullable(true)]
[DataLength(500)]
[JsonProperty("memo")]
public string Memo
{
get { return memo; }
set { memo = value; }
}
///
/// {老系统}产品规范码
///
[Description("{老系统}产品规范码")]
[Nullable(true)]
[DataLength(20)]
[JsonProperty("pscOld")]
public string PscOld
{
get { return pscOld; }
set { pscOld = value; }
}
///
/// 产品大类(4049)
///
[Description("产品大类(4049)")]
[Nullable(true)]
[DataLength(20)]
[JsonProperty("producHead")]
public string ProducHead
{
get { return producHead; }
set { producHead = value; }
}
///
/// 品名类型(冶金规范类型----钢管(坯)、套管+接箍、附件短节、接箍、双公短节)
///
[Description("品名类型(冶金规范类型----钢管(坯)、套管+接箍、附件短节、接箍、双公短节)")]
[Nullable(true)]
[DataLength(1)]
[JsonProperty("producType")]
public string ProducType
{
get { return producType; }
set { producType = value; }
}
///
/// 品种大类代码(4050)--销售分类
///
[Description("品种大类代码(4050)--销售分类")]
[Nullable(true)]
[DataLength(20)]
[JsonProperty("producStyle")]
public string ProducStyle
{
get { return producStyle; }
set { producStyle = value; }
}
///
/// 品种大类描述
///
[Description("品种大类描述")]
[Nullable(true)]
[DataLength(100)]
[JsonProperty("producDesc")]
public string ProducDesc
{
get { return producDesc; }
set { producDesc = value; }
}
///
/// 压缩比
///
[Description("压缩比")]
[Nullable(true)]
[DataLength(5)]
[JsonProperty("compressionRatio")]
public decimal? CompressionRatio
{
get { return compressionRatio; }
set { compressionRatio = value; }
}
}
}