using SqlSugar;
|
using System;
|
using System.Collections.Generic;
|
using System.Text;
|
|
namespace Operater.DbModel
|
{
|
|
/// <summary>
|
///
|
/// </summary>
|
|
[SugarTable("yz_decrypt_info")]
|
public class YzDecryptInfo
|
{
|
/// <summary>
|
///
|
/// </summary>
|
public YzDecryptInfo()
|
{
|
}
|
|
/// <summary>
|
///
|
/// </summary>
|
[SugarColumn(ColumnName = "tid", IsPrimaryKey = true)]
|
public System.String Tid { get; set; }
|
|
/// <summary>
|
/// 详细地址
|
/// </summary>
|
[SugarColumn(ColumnName = "delivery_address")]
|
public System.String DeliveryAddress { get; set; }
|
|
/// <summary>
|
/// 收货人手机号
|
/// </summary>
|
[SugarColumn(ColumnName = "receiver_tel")]
|
public System.String ReceiverTel { get; set; }
|
|
/// <summary>
|
/// 收货人姓名
|
/// </summary>
|
[SugarColumn(ColumnName = "receiver_name")]
|
public System.String ReceiverName { get; set; }
|
|
/// <summary>
|
///
|
///买家手机号,买家在个人中心绑定手机号才会返回。否则为空
|
/// </summary>
|
[SugarColumn(ColumnName = "buyer_phone")]
|
public System.String BuyerPhone { get; set; }
|
|
/// <summary>
|
/// 下单时间
|
/// </summary>
|
[SugarColumn(ColumnName = "trade_create")]
|
public System.DateTime? TradeCreate { get; set; }
|
|
/// <summary>
|
///
|
///
|
/// </summary>
|
[SugarColumn(ColumnName = "yz_open_id")]
|
public System.String YzOpenId { get; set; }
|
}
|
}
|