You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
562 B

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; }
}
}