zhaojs
2023-09-27 74098f1401afe40f961d1d167bb18dd0a71c4d59
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
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Operater.DbModel
{
    /// <summary>
    /// 
    /// </summary>
 
    [SugarTable("data_static")]
    public class DataStatic
    {
        /// <summary>
        /// 
        /// </summary>
        public DataStatic()
        {
        }
 
        /// <summary>
        /// 
        /// </summary>
        [SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
        public System.String Id { get; set; }
 
        /// <summary>
        /// 统计时间
        /// </summary>
        [SugarColumn(ColumnName = "static_time")]
        public System.DateTime? StaticTime { get; set; }
 
        /// <summary>
        /// 有赞订单量
        /// </summary>
        [SugarColumn(ColumnName = "yz_trade_count")]
        public System.Int32? YzTradeCount { get; set; }
 
        /// <summary>
        /// 有赞付款订单量
        /// </summary>
        [SugarColumn(ColumnName = "yz_pay_count")]
        public System.Int32? YzPayCount { get; set; }
 
        /// <summary>
        /// 有赞付款金额
        /// </summary>
        [SugarColumn(ColumnName = "yz_payment")]
        public System.Decimal? YzPayment { get; set; }
 
        /// <summary>
        /// 有赞订单总金额
        /// </summary>
        [SugarColumn(ColumnName = "yz_total_fee")]
        public System.Decimal? YzTotalFee { get; set; }
 
        /// <summary>
        /// 1688订单金额
        /// </summary>
        [SugarColumn(ColumnName = "ali_total_fee")]
        public System.Decimal? AliTotalFee { get; set; }
 
        /// <summary>
        /// 利润(付款)
        /// </summary>
        [SugarColumn(ColumnName = "profit_pay")]
        public System.Decimal? ProfitPay { get; set; }
 
        /// <summary>
        /// 利润(成交)
        /// </summary>
        [SugarColumn(ColumnName = "profit_success")]
        public System.Decimal? ProfitSuccess { get; set; }
    }
}