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.

48 lines
860 B
C#

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; }
}
}