using FreeSql.DataAnnotations; using Microsoft.Office.Interop.Excel; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Mesnac.Action.ChemicalWeighing.LjReport.DayWhiteEmbryo { [Table(Name = "DayWhiteEmbryo")] public class DayWhiteEmbryoEntity { [Column(IsPrimary = true, IsIdentity = true)] public int Id { get; set; } /// /// 设备编号 /// public int? DeviceId { get; set; } /// /// 重量 /// public float? Weight { get; set; } /// /// 当前时间 /// public DateTime? CreateTime { get; set; } /// /// 当前日期 /// public string CreateDate { get; set; } } }