using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace Operater.DbModel
{
///
///
///
[SugarTable("distribution_history")]
public class DistributionHistory
{
///
///
///
public DistributionHistory()
{
}
///
///
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public System.String Id { get; set; }
///
/// 1688商品id
///
[SugarColumn(ColumnName = "product_id")]
public System.String ProductId { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "create_time")]
public System.DateTime CreateTime { get; set; }
///
/// 执行状态 0待执行 1执行中 2执行完成 3执行失败
///
[SugarColumn(ColumnName = "dis_status")]
public System.Int32 DisStatus { get; set; }
///
/// 备注
///
[SugarColumn(ColumnName = "memo")]
public System.String Memo { get; set; }
///
/// 执行时间
///
[SugarColumn(ColumnName = "run_time")]
public System.DateTime? RunTime { get; set; }
///
/// 有赞的商品id
///
[SugarColumn(ColumnName = "yz_item_id")]
public System.String YzItemId { get; set; }
///
/// 任务批次id
///
[SugarColumn(ColumnName = "task_id")]
public System.String TaskId { get; set; }
///
/// 任务规则
///
[SugarColumn(ColumnName = "rule_txt")]
public System.String RuleTxt { get; set; }
///
/// 商品标题
///
[SugarColumn(ColumnName = "pro_title")]
public System.String ProTitle { get; set; }
///
/// 商品图片
///
[SugarColumn(ColumnName = "pro_img")]
public System.String ProImg { get; set; }
///
/// 是否删除 0否 1 是
///
[SugarColumn(ColumnName = "is_del")]
public System.Int32 IsDel { get; set; }
///
/// 删除时间
///
[SugarColumn(ColumnName = "delete_time")]
public System.DateTime? DeleteTime { get; set; }
///
/// 有赞商品别名
///
[SugarColumn(ColumnName = "yz_alias")]
public System.String YzAlias { get; set; }
///
/// 是否包邮 0 否 1是 2部分包邮
///
[SugarColumn(ColumnName = "is_free_shipping")]
public System.Int32 IsFreeShipping { get; set; }
///
/// 商品来源 0:精选货源 1:1688
///
[SugarColumn(ColumnName = "pro_source")]
public System.Int32 ProSource { get; set; }
}
}