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.
lj_plc/Actions/ChemicalWeighing/Mesnac.Action.ChemicalWeighing/LjReport/DayWhiteEmbryo/DayWhiteEmbryoEntity.cs

42 lines
900 B
C#

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; }
/// <summary>
/// 设备编号
/// </summary>
public int? DeviceId { get; set; }
/// <summary>
/// 重量
/// </summary>
public float? Weight { get; set; }
/// <summary>
/// 当前时间
/// </summary>
public DateTime? CreateTime { get; set; }
/// <summary>
/// 当前日期
/// </summary>
public string CreateDate { get; set; }
}
}