You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

100 lines
2.3 KiB
C#

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;
}
/// <summary>
/// Desc:主键
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int objId { get; set; }
/// <summary>
/// Desc:卷号
/// Default:
/// Nullable:False
/// </summary>
public string lotNum { get; set; }
/// <summary>
/// Desc:开始时间
/// Default:
/// Nullable:False
/// </summary>
public string beginTime { get; set; }
/// <summary>
/// Desc:结束时间
/// Default:
/// Nullable:False
/// </summary>
public string endTime { get; set; }
/// <summary>
/// Desc:运行时长
/// Default:
/// Nullable:False
/// </summary>
public decimal runTime { get; set; }
/// <summary>
/// Desc:运行里程
/// Default:
/// Nullable:False
/// </summary>
public decimal runDistance { get; set; }
/// <summary>
/// Desc:记录时间
/// Default:
/// Nullable:False
/// </summary>
public string recordTime { get; set; }
/// <summary>
/// 正转时长
/// </summary>
public int clockwiseTime { get; set; }
/// <summary>
/// 正转里程
/// </summary>
public int clockwiseDistance { get; set; }
/// <summary>
/// 反转时长
/// </summary>
public int antiClockwiseTime { get; set; }
/// <summary>
/// 反转里程
/// </summary>
public int antiClockwiseDistance { get; set; }
public string uuid { get; set; }
}
}