using FreeSql.DataAnnotations; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mesnac.Action.ChemicalWeighing.MainDetailControl.Entity { public partial class Lj_RGVTimeRecord { [Column(IsPrimary = true, IsIdentity = true)] public int Id { get; set; } public int DeviceNo { get; set; } public bool Done { get; set; } public bool MixIsReady { get; set; } public DateTime MixReadyEndTime { get; set; } public DateTime MixReadyStartTime { get; set; } public int MixWaitTime { get; set; } public bool RGVIsReach { get; set; } public DateTime RGVLeaveTime { get; set; } public DateTime RGVReachTime { get; set; } public int RgvWaitTime { get; set; } } }