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
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Operater.DbModel
{
    /// <summary>
    /// 
    /// </summary>
 
    [SugarTable("daifa_product")]
    public class DaifaProduct
    {
        /// <summary>
        /// 
        /// </summary>
        public DaifaProduct()
        {
        }
 
        /// <summary>
        /// 1688商品id
        /// </summary>
        [SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
        public System.String Id { get; set; }
 
        /// <summary>
        /// 主图
        /// </summary>
        [SugarColumn(ColumnName = "img")]
        public System.String Img { get; set; }
 
        /// <summary>
        /// 最小价格
        /// </summary>
        [SugarColumn(ColumnName = "min_price")]
        public System.Decimal? MinPrice { get; set; }
 
        /// <summary>
        /// 最大价格
        /// </summary>
        [SugarColumn(ColumnName = "max_price")]
        public System.Decimal? MaxPrice { get; set; }
 
        /// <summary>
        /// 商品状态。published:上网状态;member expired:会员撤销;auto expired:自然过期;expired:过期(包含手动过期与自动过期);member deleted:会员删除;modified:修改;new:新发;deleted:删除;TBD:to be delete;approved:审批通过;auditing:审核中;untread:审核不通过;
        /// </summary>
        [SugarColumn(ColumnName = "product_status")]
        public System.String ProductStatus { get; set; }
 
        /// <summary>
        /// 标题
        /// </summary>
        [SugarColumn(ColumnName = "subject")]
        public System.String Subject { get; set; }
 
        /// <summary>
        /// 成交量
        /// </summary>
        [SugarColumn(ColumnName = "booked_count")]
        public System.Int64? BookedCount { get; set; }
 
        /// <summary>
        /// 是否支持网上交易
        /// </summary>
        [SugarColumn(ColumnName = "support_online_trade")]
        public System.Int32? SupportOnlineTrade { get; set; }
 
        /// <summary>
        /// 买家保障
        /// </summary>
        [SugarColumn(ColumnName = "buyer_protection")]
        public System.String BuyerProtection { get; set; }
 
        /// <summary>
        /// 是否铺货 0否 1是
        /// </summary>
        [SugarColumn(ColumnName = "is_distribute")]
        public System.Int32? IsDistribute { get; set; }
 
        /// <summary>
        /// 创建时间
        /// </summary>
        [SugarColumn(ColumnName = "create_time")]
        public System.DateTime? CreateTime { get; set; }
    }
}