using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HighWayIot.Repository.domain
{
///
/// 报表导出实体类
///
public class ExportTableEntity
{
///
/// 成品代号
///
[Description("成品代号")]
public string RecipeCode { get; set; } = string.Empty;
///
/// 标称尺度
///
[Description("标称尺度")]
public string RecipeName { get; set; } = string.Empty;
///
/// SPEC编号
///
[Description("SPEC编号")]
public string SpecCode { get; set; } = string.Empty;
///
/// SPEC规格
///
[Description("SPEC规格")]
public string SpecName { get; set; } = string.Empty;
///
/// 开始时间
///
[Description("开始时间")]
public string StartTime { get; set; } = string.Empty;
///
/// 基部胶胶号
///
[Description("基部胶胶号")]
public string BaseRubName { get; set; } = string.Empty;
///
/// 基部胶厚度
///
/// 基部胶宽度
///
/// 基部胶层数
///
[Description("基部胶层数")]
public string BaseRubLayer { get; set; } = string.Empty;
///
/// 基部胶完成时间
///
[Description("基部胶完成时间")]
public string BaseRubFinishTime { get; set; } = string.Empty;
///
/// 中层胶胶号
///
[Description("中层胶胶号")]
public string MidRubName { get; set; } = string.Empty;
///
/// 中层胶厚度
///
[Description("中层胶厚度")]
public string MidRubThickness { get; set; } = string.Empty;
///
/// 中层胶宽度
///
[Description("中层胶宽度")]
public string MidRubWidth { get; set; } = string.Empty;
///
/// 中层胶层数
///
[Description("中层胶层数")]
public string MidRubLayer { get; set; } = string.Empty;
///
/// 中层胶完成时间
///
[Description("中层胶完成时间")]
public string MidRubFinishTime { get; set; } = string.Empty;
///
/// 胎面胶胶号
///
[Description("胎面胶胶号")]
public string FaceRubName { get; set; } = string.Empty;
///
/// 胎面胶厚度
///
[Description("胎面胶厚度")]
public string FaceRubThickness { get; set; } = string.Empty;
///
/// 胎面胶厚度
///
[Description("胎面胶层数")]
public string FaceRubLayer { get; set; } = string.Empty;
///
/// 胎面胶宽度
///
/// 生胎完成时间
///
[Description("生胎完成时间")]
public string FaceRubFinishTime { get; set; } = string.Empty;
///
/// 生胎宽度(胎面胶宽度 +(厚度*2)) 无中层胶就等于胎面胶宽度
///
[Description("生胎宽度")]
public string RawTireWidth { get; set; } = string.Empty;
///
/// 标准重量
///
[Description("标准重量")]
public string StandardWeight { get; set; } = string.Empty;
///
/// 生胎重量
///
[Description("生胎重量")]
public string RawTireWeight { get; set; } = string.Empty;
///
/// 复重重量
///
[Description("复重重量")]
public string RepeatWeight { get; set; } = string.Empty;
///
/// 状态
///
[Description("状态")]
public string IsDone { get; set; } = string.Empty;
}
}