快乐的昕的电脑
2025-11-21 8000b3a16fbea87ba4fcbc70a4540723849bf5a8
Entites/DbModels/VOrderBycl.cs
@@ -70,6 +70,12 @@
    public decimal? Daa012 { get; set; }
    /// <summary>
    /// 开工时间
    /// </summary>
    [SugarColumn(ColumnName = "DAA016")]
    public string? Daa016 { get; set; }
    /// <summary>
    /// 刀具代码
    /// </summary>
    [SugarColumn(ColumnName = "CUTTER_ID")]
@@ -139,13 +145,13 @@
    /// 稼动率
    /// </summary>
    [SugarColumn(ColumnName = "JDL")]
    public decimal? JDL { get; set; }
    public double? JDL { get; set; }
    /// <summary>
    /// 当天使用时间
    /// </summary>
    [SugarColumn(ColumnName = "TODAY_RUN_TIME")]
    public decimal? todayRunTime { get; set; }
    public double? todayRunTime { get; set; }
    /// <summary>
    /// 编辑日期
@@ -195,13 +201,30 @@
    [SugarColumn(ColumnName = "ITEM_NO")]
    public string? itemNo { get; set; }
    /// <summary>
    /// 开工时间前一条的采集数量
    /// </summary>
    [SugarColumn(ColumnName = "PRE_START_CJ_NUM")]
    public long? preStartCjNum { get; set; }
    /// <summary>
    /// 调机时间前一条的采集数量
    /// </summary>
    [SugarColumn(ColumnName = "PRE_START_tj_NUM")]
    public long? preStartTjNum { get; set; }
    /// <summary>
    /// 调机时间
    /// </summary>
    [SugarColumn(ColumnName = "MA_START_TIME")]
    public string? maStartTime { get; set; }
    [SugarColumn(IsIgnore = true)] public decimal? wjQty { get; set; }
    [SugarColumn(IsIgnore = true)] public string? finalResult { get; set; }
    
    // 新增:开工数采(最早采集值)、当前数采(最新采集值)
    [SugarColumn(IsIgnore = true)] public long? StartCjNum { get; set; }
    [SugarColumn(IsIgnore = true)] public long? CurrentCjNum { get; set; }
    // 新增:初始采集数
    [SugarColumn(IsIgnore = true)] public long? InitCjNum { get; set; }
    // 新增:
    [SugarColumn(IsIgnore = true)] public long? StartCjNum { get; set; }//开工数采(最早采集值)
    [SugarColumn(IsIgnore = true)] public long? CurrentCjNum { get; set; }//当前数采(最新采集值)
    [SugarColumn(IsIgnore = true)] public long? InitCjNum { get; set; }//初始采集数
    [SugarColumn(IsIgnore = true)] public int TodayDowntimeCount { get; set; }//今日停机次数
}