using FreeSql.DataAnnotations; namespace BBWYB.Server.Model.Db { [Table(Name = "instoreorderchecktask", DisableSyncStructure = true)] public partial class InStoreOrderCheckTask { [Column(IsPrimary = true)] public long Id { get; set; } [Column(DbType = "datetime")] public DateTime? CreateTime { get; set; } public bool? IsChecked { get; set; } = false; [Column(StringLength = 50)] public string OrderId { get; set; } [Column(StringLength = 50)] public string OrderSn { get; set; } public long? ShopId { get; set; } } }