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.

98 lines
2.6 KiB

2 years ago
using FreeSql.DataAnnotations;
namespace BBWYB.Server.Model.Db
{
[Table(Name = "orderpurchaseinfo", DisableSyncStructure = true)]
2 years ago
public partial class OrderPurchaseInfo
2 years ago
{
2 years ago
[Column(IsPrimary = true, IsNullable = false)]
public long Id { get; set; }
2 years ago
2 years ago
[Column(StringLength = 50, IsNullable = false)]
public string OrderId { get; set; }
2 years ago
2 years ago
[Column(DbType = "datetime")]
public DateTime? CreateTime { get; set; }
2 years ago
[Column(DbType = "datetime")]
public DateTime? UpdateTime { get; set; }
2 years ago
/// <summary>
/// �ɹ��˺�Id
/// </summary>
2 years ago
[Column(StringLength = 100)]
public string PurchaseAccountId { get; set; }
2 years ago
2 years ago
/// <summary>
/// �ɹ��˺�����
/// </summary>
2 years ago
[Column(StringLength = 100)]
public string PurchaseAccountName { get; set; }
[Column(MapType = typeof(int?))]
2 years ago
public Enums.PurchaseMethod? PurchaseMethod { get; set; }
2 years ago
2 years ago
/// <summary>
/// �ɹ���Id
/// </summary>
2 years ago
[Column(StringLength = 100)]
public string PurchaseOrderId { get; set; }
2 years ago
[Column(MapType = typeof(int?))]
public Enums.Platform? PurchasePlatform { get; set; }
/// <summary>
/// �ɹ���Id
/// </summary>
[Column(StringLength = 100)]
public string PurchaserId { get; set; }
2 years ago
/// <summary>
/// �ɹ�������
/// </summary>
2 years ago
[Column(StringLength = 100)]
public string PurchaserName { get; set; }
2 years ago
2 years ago
/// <summary>
/// ����Id
/// </summary>
2 years ago
public long? ShopId { get; set; }
2 years ago
2 years ago
/// <summary>
/// ��������Sku
/// </summary>
2 years ago
[Column(StringLength = 500)]
public string BelongSkuIds { get; set; }
2 years ago
[Column(DbType = "bit")]
public bool IsEnabled { get; set; } = true;
/// <summary>
/// �ɹ�����ע
/// </summary>
[Column(StringLength = 500)]
public string Remark { get; set; }
/// <summary>
/// ������ʷ�ɹ���ʱ��
/// </summary>
[Column(DbType = "datetime", IsNullable = true)]
public DateTime HistorySettingTime { get; set; }
/// <summary>
/// �ɹ���״̬
/// </summary>
[Column(MapType = typeof(int?))]
public Enums.PurchaseOrderState? OrderState { get; set; }
/// <summary>
/// �Ƿ�ƽ��
/// </summary>
[Column(MapType = typeof(int?))]
public Enums.AutoEditOrderPriceType? IsAutoEditOrderPrice { get; set; }
2 years ago
}
2 years ago
}