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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
 
namespace Operater.DbModel
{
    /// <summary>
    /// 
    /// </summary>
 
    [SugarTable("product_update_log")]
    public class ProductUpdateLog
    {
        /// <summary>
        /// 
        /// </summary>
        public ProductUpdateLog()
        {
        }
 
        /// <summary>
        /// 
        /// </summary>
        [SugarColumn(ColumnName = "id")]
        public System.String Id { get; set; }
 
        /// <summary>
        /// 更新时间
        /// </summary>
        [SugarColumn(ColumnName = "create_time")]
        public System.DateTime CreateTime { get; set; }
 
        /// <summary>
        /// 更新内容
        /// </summary>
        [SugarColumn(ColumnName = "update_content")]
        public System.String UpdateContent { get; set; }
 
        /// <summary>
        /// 1688商品id
        /// </summary>
        [SugarColumn(ColumnName = "product_id")]
        public System.String ProductId { get; set; }
 
        /// <summary>
        /// 商品图片
        /// </summary>
        [SugarColumn(ColumnName = "product_img")]
        public System.String ProductImg { get; set; }
 
        /// <summary>
        /// 商品价格
        /// </summary>
        [SugarColumn(ColumnName = "product_price")]
        public System.Decimal? ProductPrice { get; set; }
 
        /// <summary>
        /// 商品状态
        /// </summary>
        [SugarColumn(ColumnName = "product_status")]
        public System.Int32? ProductStatus { get; set; }
 
        /// <summary>
        /// 商品消息类型
        /// </summary>
        [SugarColumn(ColumnName = "msg_type")]
        public System.String MsgType { get; set; }
 
        /// <summary>
        /// 消息处理状态 0未处理 1已处理 2搁置
        /// </summary>
        [SugarColumn(ColumnName = "processing_status")]
        public System.Int32 ProcessingStatus { get; set; }
 
        /// <summary>
        /// 备注
        /// </summary>
        [SugarColumn(ColumnName = "memo")]
        public System.String Memo { get; set; }
 
        /// <summary>
        /// 对应的有赞商品id
        /// </summary>
        [SugarColumn(ColumnName = "yz_product_id")]
        public System.String YzProductId { get; set; }
 
        /// <summary>
        /// 处理时间
        /// </summary>
        [SugarColumn(ColumnName = "processing_time")]
        public System.DateTime? ProcessingTime { get; set; }
 
        /// <summary>
        /// 商品标题
        /// </summary>
        [SugarColumn(ColumnName = "product_title")]
        public System.String ProductTitle { get; set; }
 
        /// <summary>
        /// 消息id
        /// </summary>
        [SugarColumn(ColumnName = "msg_id")]
        public System.String MsgId { get; set; }
 
        /// <summary>
        /// 是否系统下架
        /// </summary>
        /// 
        [SugarColumn(ColumnName = "is_system_down")]
        public System.Int32 IsSystemDown { get; set; }
 
        /// <summary>
        /// 是否删除 0否 1是
        /// </summary>
        /// 
        [SugarColumn(ColumnName = "is_del")]
        public System.Int32 IsDel { get; set; }
 
    }
}