using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace Operater.DbModel { /// /// /// [SugarTable("order_relation")] public class OrderRelation { /// /// /// public OrderRelation() { } /// /// 有赞子订单号 /// [SugarColumn(ColumnName = "yz_oid")] public System.String YzOid { get; set; } /// /// 1688子订单号 /// [SugarColumn(ColumnName = "alis_oid")] public System.String AlisOid { get; set; } /// /// 1688主订单号 /// [SugarColumn(ColumnName = "ali_tid")] public System.String AliTid { get; set; } /// /// 有赞主订单号 /// [SugarColumn(ColumnName = "yz_tid")] public System.String YzTid { get; set; } /// /// 有赞实付金额 /// [SugarColumn(ColumnName = "yz_pay_amount")] public System.Decimal? YzPayAmount { get; set; } /// /// 商品名称 /// [SugarColumn(ColumnName = "yz_item_title")] public System.String YzItemTitle { get; set; } /// /// 1688商品id /// [SugarColumn(ColumnName = "ali_product_id")] public System.String AliProductId { get; set; } /// /// yz商品id /// [SugarColumn(ColumnName = "yz_product_id")] public System.String YzProductId { get; set; } /// /// 1688主图 /// [SugarColumn(ColumnName = "yz_img")] public System.String YzImg { get; set; } /// /// 商品数量 /// [SugarColumn(ColumnName = "yz_num")] public System.Int32? YzNum { get; set; } /// /// 1688skuid /// [SugarColumn(ColumnName = "ali_sku_id")] public System.String AliSkuId { get; set; } /// /// 有赞skuid /// [SugarColumn(ColumnName = "yz_sku_id")] public System.String YzSkuId { get; set; } /// /// 订单创建状态:0:失败 1:成功 /// [SugarColumn(ColumnName = "create_status")] public System.Int32? CreateStatus { get; set; } /// /// 错误信息 /// [SugarColumn(ColumnName = "err_msg")] public System.String ErrMsg { get; set; } /// /// 1688规格id /// [SugarColumn(ColumnName = "ali_specid")] public System.String AliSpecid { get; set; } } }