using SqlSugar;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SLH.SSDMS.Model.DO
{
[SugarTable("day_RunInfo")]
public class Day_RunInfo
{
public Day_RunInfo()
{
}
public Day_RunInfo(string lotNum, string beginTime, string endTime, string recordTime)
{
this.lotNum = lotNum;
this.beginTime = beginTime;
this.endTime = endTime;
this.recordTime = recordTime;
}
///
/// Desc:主键
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int objId { get; set; }
///
/// Desc:卷号
/// Default:
/// Nullable:False
///
public string lotNum { get; set; }
///
/// Desc:开始时间
/// Default:
/// Nullable:False
///
public string beginTime { get; set; }
///
/// Desc:结束时间
/// Default:
/// Nullable:False
///
public string endTime { get; set; }
///
/// Desc:运行时长
/// Default:
/// Nullable:False
///
public decimal runTime { get; set; }
///
/// Desc:运行里程
/// Default:
/// Nullable:False
///
public decimal runDistance { get; set; }
///
/// Desc:记录时间
/// Default:
/// Nullable:False
///
public string recordTime { get; set; }
///
/// 正转时长
///
public int clockwiseTime { get; set; }
///
/// 正转里程
///
public int clockwiseDistance { get; set; }
///
/// 反转时长
///
public int antiClockwiseTime { get; set; }
///
/// 反转里程
///
public int antiClockwiseDistance { get; set; }
public string uuid { get; set; }
}
}