步步为盈
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.

70 lines
1.5 KiB

3 years ago
using FreeSql.DataAnnotations;
using System;
namespace BBWY.Server.Model.Db
{
/// <summary>
/// sku每日销量详情
/// </summary>
3 years ago
[Table(Name = "skudailysalesdetail", DisableSyncStructure = true)]
public partial class SkuDailySalesDetail
3 years ago
{
[Column(IsPrimary = true)]
public long Id { get; set; }
/// <summary>
/// 销售额
/// </summary>
[Column(DbType = "decimal(18,2)")]
3 years ago
public decimal Amount { get; set; } = 0.0M;
3 years ago
[Column(DbType = "datetime")]
public DateTime? CreateTime { get; set; }
[Column(DbType = "datetime")]
public DateTime Date { get; set; }
/// <summary>
/// 销售件数
/// </summary>
3 years ago
public int ItemTotal { get; set; } = 0;
3 years ago
3 years ago
/// <summary>
/// 取消件数
/// </summary>
public int CancelItemTotal { get; set; } = 0;
3 years ago
/// <summary>
/// 订单数
/// </summary>
3 years ago
public int OrderCount { get; set; } = 0;
3 years ago
[Column(MapType = typeof(int?))]
public Enums.Platform? Platform { get; set; }
/// <summary>
/// 销售单价
/// </summary>
[Column(DbType = "decimal(18,2)")]
public decimal? Price { get; set; }
public long? ShopId { get; set; }
[Column(StringLength = 50)]
public string Sku { get; set; }
[Column(StringLength = 50)]
public string Spu { get; set; }
3 years ago
[Column(DbType = "bit")]
public bool IsGift { get; set; }
3 years ago
}
}