using FreeSql.DataAnnotations; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace FATrace.Model { /// /// 每日的产量计数 /// [Table(Name = "DayCount")] public class DayCount { /// /// 主键 /// [Column(IsPrimary = true, IsIdentity = true)] public long Id { get; set; } ///// ///// 内袋二维码 ///// //[Column(Name = "InBagCode", IsNullable = false, StringLength = 100)] //public string? InBagCode { get; set; } /// /// 当前的产量 /// [Column(Name = "Count")] public int Count { get; set; } /// /// 日期 /// [Column(Name = "DayInfo", IsNullable = false, StringLength = 20)] public string? DayInfo { get; set; } /// /// 创建时间 /// [Column(ServerTime = DateTimeKind.Local, CanUpdate = true)] public DateTime UpdateTime { get; set; } } }