| | |
| | | public string? StaffName { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 报工时间 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "BG_DATE")] |
| | | public string? BgDate { get; set; } |
| | | |
| | | /// <summary> |
| | | /// 工序名称 |
| | | /// </summary> |
| | | [SugarColumn(ColumnName = "PROC_NAME")] |
| | |
| | | |
| | | [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 int TodayDowntimeCount { get; set; }//今日停机次数 |
| | | } |