using SqlSugar; using System; using System.Collections.Generic; using System.Text; namespace Operater.DbModel { /// /// /// [SugarTable("batch_updateprice_history")] public class BatchUpdatepriceHistory { /// /// /// public BatchUpdatepriceHistory() { } /// /// /// [SugarColumn(ColumnName = "id", IsPrimaryKey = true)] public System.String Id { get; set; } /// /// 有赞商品id /// [SugarColumn(ColumnName = "yz_product_id")] public System.String YzProductId { get; set; } /// /// 1688商品id /// [SugarColumn(ColumnName = "ali_product_id")] public System.String AliProductId { get; set; } /// /// 修改时间 /// [SugarColumn(ColumnName = "update_time")] public System.DateTime? UpdateTime { get; set; } /// /// 修改状态 1:成功 2:失败 /// [SugarColumn(ColumnName = "update_status")] public System.Int32? UpdateStatus { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "memo")] public System.String Memo { get; set; } /// /// 任务id /// [SugarColumn(ColumnName = "task_id")] public System.String TaskId { get; set; } /// /// 1688sku信息 /// [SugarColumn(ColumnName = "ali_txt")] public System.String AliTxt { get; set; } /// /// 有赞sku信息 /// [SugarColumn(ColumnName = "yz_txt")] public System.String YzTxt { get; set; } /// /// 有赞修改前sku信息 /// [SugarColumn(ColumnName = "yz_before_txt")] public System.String YzBeforeTxt { get; set; } } }