using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace DB.Entity { public class ReadBufLog: BaseChimsDb { public DateTime CreateTime { get; set; } /// /// 类别 /// public string Category { get; set; } /// /// 条码 /// public string BarCode { get; set; } } public class ReadBufLogMapper : SystemEntityTypeBuilder { public ReadBufLogMapper() : base("ReadBufLog") { this.Property(x => x.Category).HasSize(4); } } }