using Chloe.Annotations;
namespace WorkerSynReport.Data;
public partial class Report_DryDos_Detail {
///
/// 主键
///
[Column(IsPrimaryKey = true)]
[AutoIncrement]
public int objId { get; set; }
///
/// 实际公差
///
public double? actToler { get; set; }
///
/// 实际重量
///
public double? actValue { get; set; }
///
/// 批次号
///
public int? batch { get; set; }
///
/// 设备编号
///
public int? eqNo { get; set; }
///
/// 物料代码
///
public int? matCode { get; set; }
public DateTime? recordTime { get; set; }
public string reportId { get; set; } = string.Empty;
///
/// 设定公差
///
public double? setToler { get; set; }
///
/// 设定重量
///
public double? setValue { get; set; }
}