using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace HighWayIot.Repository.domain { /// /// /// [SugarTable("zx_daily_report")] public class ZxDailyReportEntity { /// /// 备 注: /// 默认值: /// [SugarColumn(ColumnName = "uuid", IsPrimaryKey = true)] public string Uuid { get; set; } /// /// 备 注:硫化机位 /// 默认值: /// [SugarColumn(ColumnName = "vulcanization_no")] public string VulcanizationNo { get; set; } = string.Empty; /// /// 备 注:开始时间 /// 默认值: /// [SugarColumn(ColumnName = "start_time")] public DateTime? StartTime { get; set; } /// /// 备 注:成品代号 /// 默认值: /// [SugarColumn(ColumnName = "recipe_name")] public string RecipeName { get; set; } = string.Empty; /// /// 备 注:标称尺度 /// 默认值: /// [SugarColumn(ColumnName = "spec_name")] public string SpecName { get; set; } = string.Empty; /// /// 备 注:SPEC编号 /// 默认值: /// [SugarColumn(ColumnName = "spec_code")] public string SpecCode { get; set; } = string.Empty; /// /// 备 注:小车编号 /// 默认值: /// [SugarColumn(ColumnName = "device_no")] public int? DeviceNo { get; set; } /// /// 备 注:生胎重量 /// 默认值: /// [SugarColumn(ColumnName = "raw_tire_weight")] public int? RawTireWeight { get; set; } /// /// 备 注:基部胶开始 /// 默认值: /// [SugarColumn(ColumnName = "base_start_time")] public DateTime? BaseStartTime { get; set; } /// /// 备 注:基部胶结束 /// 默认值: /// [SugarColumn(ColumnName = "base_end_time")] public DateTime? BaseEndTime { get; set; } /// /// 备 注:中层胶开始 /// 默认值: /// [SugarColumn(ColumnName = "mid_start_time")] public DateTime? MidStartTime { get; set; } /// /// 备 注:中层胶结束 /// 默认值: /// [SugarColumn(ColumnName = "mid_end_time")] public DateTime? MidEndTime { get; set; } /// /// 备 注:胎面胶开始 /// 默认值: /// [SugarColumn(ColumnName = "face_start_time")] public DateTime? FaceStartTime { get; set; } /// /// 备 注:胎面胶结束(生胎完成) /// 默认值: /// [SugarColumn(ColumnName = "face_end_time")] public DateTime? FaceEndTime { get; set; } /// /// 备 注:是否已完成(0未完成 1完成 2中止) /// 默认值: /// [SugarColumn(ColumnName = "is_done")] public int? IsDone { get; set; } } }