using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HighWayIot.Repository.domain
{
public class MonitorDataSource
{
///
/// 编号
///
public int No { get; set; }
///
/// 备 注:硫化机位
/// 默认值:
///
public string VulcanizationNo { get; set; } = string.Empty;
///
/// 备 注:开始时间
/// 默认值:
///
public string StartTime { get; set; } = string.Empty;
///
/// 备 注:成品代号
/// 默认值:
///
public string RecipeCode { get; set; } = string.Empty;
///
/// 备 注:标称尺度
/// 默认值:
///
public string RecipeName { get; set; } = string.Empty;
///
/// 备 注:SPEC编号
/// 默认值:
///
public string SpecCode { get; set; } = string.Empty;
///
/// 备 注:小车编号
/// 默认值:
///
public string DeviceNo { get; set; } = string.Empty;
///
/// 备 注:生胎重量
/// 默认值:
///
public int? RawTireWeight { get; set; }
///
/// 备 注:标准重量
/// 默认值:
///
public int? StandardWeight { get; set; }
///
/// 基部胶耗时
///
public string BaseRubTimeSpan { get; set; } = string.Empty;
///
/// 中层胶耗时
///
public string MidRubTimeSpan { get; set; } = string.Empty;
///
/// 胎面胶耗时
///
public string FaceRubTimeSpan { get; set; } = string.Empty;
///
/// 复重重量
///
public int? RepeatWeight { get; set; }
///
/// 是否已完成
///
public string IsDone { get; set; } = string.Empty;
}
}