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