35 lines
1.3 KiB
C#
35 lines
1.3 KiB
C#
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;
|
|
}
|
|
}
|