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