| | |
| | | public decimal? Daa012 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 开工时间 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "DAA016")] |
| | | public string? Daa016 { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 刀具代码 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "CUTTER_ID")] |
| | |
| | | /// 稼动率 |
| | | /// </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> |
| | | /// 编辑日期 |
| | |
| | | [SugarColumn(ColumnName = "ITEM_NO")] |
| | | public string? itemNo { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 开工时间前一条的采集数量 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "PRE_START_CJ_NUM")] |
| | | public long? preStartCjNum { 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; }//今日停机次数 |
| | | } |