初始提交

This commit is contained in:
wanyongkang
2020-10-07 20:25:03 +08:00
commit d318014316
3809 changed files with 263103 additions and 0 deletions

View File

@@ -0,0 +1,34 @@
using Hncore.Infrastructure.DDD;
using Hncore.Pass.Sells.Model;
using System;
using System.Collections.Generic;
namespace Hncore.Pass.Sells.Domain
{
public partial class TaoBaoOrderEntity
{
public int Id { get; set; }
public int? Num { get; set; }
public string Tid { get; set; }
public string Platform { get; set; }
public string PlatformUserId { get; set; }
public string ReceiverName { get; set; }
public string Phone { get; set; }
public string ReceiverAddress { get; set; }
public string BuyerArea { get; set; }
public string Status { get; set; }
public string SellerNick { get; set; }
public string BuyerNick { get; set; }
public string BuyerMessage { get; set; }
public decimal? Price { get; set; }
public decimal? TotalFee { get; set; }
public decimal? Payment { get; set; }
public DateTime? Created { get; set; }
public string TradeFrom { get; set; }
public string SellerMemo { get; set; }
public string SkuPropertiesName { get; set; }
public int? SellerFlag { get; set; }
public DateTime CreateDate { get; set; } = DateTime.Now;
}
}