zhaojs
2023-09-15 fc13938ff90213060532d99a600dea4a84456885
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Operater.DbModel
{
    /// <summary>
    /// 
    /// </summary>
 
    [SugarTable("trade_relation")]
    public class TradeRelation
    {
        /// <summary>
        /// 
        /// </summary>
        public TradeRelation()
        {
        }
 
        /// <summary>
        /// 1688主订单号
        /// </summary>
        [SugarColumn(ColumnName = "ali_tid",IsPrimaryKey =true)]
        public System.String AliTid { get; set; }
 
        /// <summary>
        /// 有赞主订单号
        /// </summary>
        [SugarColumn(ColumnName = "yz_tid")]
        public System.String YzTid { get; set; }
 
        /// <summary>
        /// 订单创建状态:0:失败  1:成功  2:部分成功
        /// </summary>
        [SugarColumn(ColumnName = "create_status")]
        public System.Int32? CreateStatus { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(ColumnName = "status_msg")]
        public System.String StatusMsg { get; set; }
 
        /// <summary>
        /// 1688订单创建时间
        /// </summary>
        [SugarColumn(ColumnName = "create_time")]
        public System.DateTime? CreateTime { get; set; }
 
        /// <summary>
        /// 有赞订单支付的金额
        /// </summary>
        [SugarColumn(ColumnName = "yz_trade_pay")]
        public System.Decimal? YzTradePay { get; set; }
 
        /// <summary>
        /// 1688订单总费用
        /// </summary>
        [SugarColumn(ColumnName = "ali_trade_pay")]
        public System.Decimal? AliTradePay { get; set; }
 
        /// <summary>
        /// 收货人姓名
        /// </summary>
        [SugarColumn(ColumnName = "receive_name")]
        public System.String ReceiveName { get; set; }
 
        /// <summary>
        /// 收货人手机号
        /// </summary>
        [SugarColumn(ColumnName = "receive_mobile")]
        public System.String ReceiveMobile { get; set; }
 
        /// <summary>
        /// 省
        /// </summary>
        [SugarColumn(ColumnName = "receive_province")]
        public System.String ReceiveProvince { get; set; }
 
        /// <summary>
        /// 市
        /// </summary>
        [SugarColumn(ColumnName = "receive_city")]
        public System.String ReceiveCity { get; set; }
 
        /// <summary>
        /// 区
        /// </summary>
        [SugarColumn(ColumnName = "receive_area")]
        public System.String ReceiveArea { get; set; }
 
        /// <summary>
        /// 详细地址
        /// </summary>
        [SugarColumn(ColumnName = "receive_address")]
        public System.String ReceiveAddress { get; set; }
 
        /// <summary>
        /// 1688运费
        /// </summary>
        [SugarColumn(ColumnName = "ali_post_fee")]
        public System.Decimal? AliPostFee { get; set; }
    }
}