using Core.Mes.Client.Comm.Attribute;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace Core.StlMes.Client.YdmPipeManage.Entity
{
class ComBaseInfoEntity
{
///
/// 基础分类编码
///
private string basecode = "";
///
/// 基础分类名称
///
private string basename = "";
///
/// 快速检索码
///
private string sortcode = "";
///
/// 可编辑标志(1:可编辑,0:不可编辑)
///
private string isvisible = "";
///
/// 拼音助记码
///
private string mnemonicCode = "";
///
/// 序号(排序用)
///
private decimal? seq = null;
///
/// 是否允许增加子类(1:允许,0:不允许)
///
private string flag = "";
///
/// 创建人
///
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 = "";
///
/// 钢种系数(sortcode=4002专用,前台界面不显示)
///
private decimal? coefficient = null;
///
/// 基础分类编码
///
[Description("基础分类编码")]
[Nullable(false)]
[DataLength(20)]
public string Basecode
{
get { return basecode; }
set { basecode = value; }
}
///
/// 基础分类名称
///
[Description("基础分类名称")]
[Nullable(true)]
[DataLength(100)]
public string Basename
{
get { return basename; }
set { basename = value; }
}
///
/// 快速检索码
///
[Description("快速检索码")]
[Nullable(true)]
[DataLength(20)]
public string Sortcode
{
get { return sortcode; }
set { sortcode = value; }
}
///
/// 可编辑标志(1:可编辑,0:不可编辑)
///
[Description("可编辑标志(1:可编辑,0:不可编辑)")]
[Nullable(true)]
[DataLength(1)]
public string Isvisible
{
get { return isvisible; }
set { isvisible = value; }
}
///
/// 拼音助记码
///
[Description("拼音助记码")]
[Nullable(true)]
[DataLength(100)]
public string MnemonicCode
{
get { return mnemonicCode; }
set { mnemonicCode = value; }
}
///
/// 序号(排序用)
///
[Description("序号")]
[Nullable(true)]
[DataLength(22)]
public decimal? Seq
{
get { return seq; }
set { seq = value; }
}
///
/// 是否允许增加子类(1:允许,0:不允许)
///
[Description("是否允许增加子类")]
[Nullable(true)]
[DataLength(1)]
public string Flag
{
get { return flag; }
set { flag = value; }
}
///
/// 创建人
///
[Description("创建人")]
[Nullable(true)]
[DataLength(20)]
public string CreateName
{
get { return createName; }
set { createName = value; }
}
///
/// 创建时间
///
[Description("创建时间")]
[Nullable(true)]
public string CreateTime
{
get { return createTime; }
set { createTime = value; }
}
///
/// 修改人
///
[Description("修改人")]
[Nullable(true)]
[DataLength(20)]
public string UpdateName
{
get { return updateName; }
set { updateName = value; }
}
///
/// 修改时间
///
[Description("修改时间")]
[Nullable(true)]
public string UpdateTime
{
get { return updateTime; }
set { updateTime = value; }
}
///
/// 删除人
///
[Description("删除人")]
[Nullable(true)]
[DataLength(20)]
public string DeleteName
{
get { return deleteName; }
set { deleteName = value; }
}
///
/// 删除时间
///
[Description("删除时间")]
[Nullable(true)]
public string DeleteTime
{
get { return deleteTime; }
set { deleteTime = value; }
}
///
/// 有效标志(1:有效,0:无效)
///
[Description("有效标志")]
[Nullable(false)]
[DataLength(1)]
public string Validflag
{
get { return validflag; }
set { validflag = value; }
}
///
/// 备注
///
[Description("备注")]
[Nullable(true)]
[DataLength(200)]
public string Memo
{
get { return memo; }
set { memo = value; }
}
///
/// 钢种系数(sortcode=4002专用,前台界面不显示)
///
[Description("钢种系数(sortcode=4002专用,前台界面不显示)")]
[Nullable(true)]
[DataLength(4)]
public decimal? Coefficient
{
get { return coefficient; }
set { coefficient = value; }
}
}
}