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