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.Mcp.Treatment.Entity
{
///
/// 数据库表HTT_REPORT所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/)
/// 作者:tgcx-test 时间:2018-06-29
///
public class HttReportEntity
{
///
/// 产线代码
///
private string plineCode = "";
///
/// 报表编号
///
private string reportNo = "";
///
/// 新报表编号
///
private string reportNoNew = "";
///
/// 新报表编号生效时间
///
private string reportNoTime = "";
///
/// 报表名称
///
private string reportName = "";
///
/// 操作人
///
private string colUser = "";
///
/// 操作时间
///
private string colTime = "";
///
/// 备注
///
private string remark = "";
///
/// 产生岗位
///
private string generateStation = "";
///
/// 接收岗位
///
private string receivingStation = "";
///
/// 保存岗位
///
private string saveStation = "";
///
/// 保存期限
///
private string storageLife = "";
///
/// 媒介(纸质/电子版)
///
private string intermediary = "";
///
/// 报表英文名字
///
private string englishName = "";
///
/// 报表类型
///
private string reportType = "";
///机器编号
private string machineNo = "";
[Description("机器编号")]
public string MachineNo
{
get { return machineNo; }
set { machineNo = value; }
}
///
/// 报表英文名字
///
[Description("报表类型")]
public string ReportType
{
get { return reportType; }
set { reportType = value; }
}
///
/// 报表英文名字
///
[Description("报表英文名字")]
public string EnglishName
{
get { return englishName; }
set { englishName = value; }
}
///
/// 产线代码
///
[Description("产线代码")]
public string PlineCode
{
get { return plineCode; }
set { plineCode = value; }
}
///
/// 报表编号
///
[Description("报表编号")]
public string ReportNo
{
get { return reportNo; }
set { reportNo = value; }
}
///
/// 新报表编号
///
[Description("新报表编号")]
public string ReportNoNew
{
get { return reportNoNew; }
set { reportNoNew = value; }
}
///
/// 新报表编号生效时间
///
[Description("新报表编号生效时间")]
public string ReportNoTime
{
get { return reportNoTime; }
set { reportNoTime = value; }
}
///
/// 报表名称
///
[Description("报表名称")]
public string ReportName
{
get { return reportName; }
set { reportName = value; }
}
///
/// 操作人
///
[Description("操作人")]
public string ColUser
{
get { return colUser; }
set { colUser = value; }
}
///
/// 操作时间
///
[Description("操作时间")]
public string ColTime
{
get { return colTime; }
set { colTime = value; }
}
///
/// 备注
///
[Description("备注")]
public string Remark
{
get { return remark; }
set { remark = value; }
}
///
/// 产生岗位
///
[Description("产生岗位")]
public string GenerateStation
{
get { return generateStation; }
set { generateStation = value; }
}
///
/// 接收岗位
///
[Description("接收岗位")]
public string ReceivingStation
{
get { return receivingStation; }
set { receivingStation = value; }
}
///
/// 保存岗位
///
[Description("保存岗位")]
public string SaveStation
{
get { return saveStation; }
set { saveStation = value; }
}
///
/// 保存期限
///
[Description("保存期限")]
public string StorageLife
{
get { return storageLife; }
set { storageLife = value; }
}
///
/// 媒介(纸质/电子版)
///
[Description("媒介(纸质/电子版)")]
public string Intermediary
{
get { return intermediary; }
set { intermediary = value; }
}
}
}