using Chloe.Annotations;
namespace WorkerSynReport.Data;
///
/// 干混机报表
///
public partial class Report_WetMixer {
///
/// 主键标识
///
[Column(IsPrimaryKey = true)]
[AutoIncrement]
public int objId { get; set; }
///
/// 车次
///
public int? Batch { get; set; }
///
/// 计划代码
///
public int? planCode { get; set; }
///
/// 计划名称
///
public string planName { get; set; } = string.Empty;
///
/// 配方编码
///
public int? recipeCode { get; set; }
///
/// 配方名称
///
public string recipeName { get; set; } = string.Empty;
///
/// 记录时间
///
public DateTime? recordTime { get; set; }
///
/// 报表标识
///
public string reportId { get; set; } = string.Empty;
public DateTime? reportTime { get; set; }
///
/// 设备编号
///
public int? WetNo { get; set; }
}