using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace Operater.DbModel
{
///
///
///
[SugarTable("distribution_relation")]
public class DistributionRelation
{
///
///
///
public DistributionRelation()
{
}
///
///
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public System.String Id { get; set; }
///
/// 源商品id
///
[SugarColumn(ColumnName = "source_product")]
public System.String SourceProduct { get; set; }
///
/// 有赞商品id
///
[SugarColumn(ColumnName = "yz_product")]
public System.String YzProduct { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "create_time")]
public System.DateTime CreateTime { get; set; }
///
/// 关联状态1正常 0已解除关联
///
[SugarColumn(ColumnName = "re_status")]
public System.Int32 ReStatus { get; set; }
///
/// 1688sku信息
///
[SugarColumn(ColumnName = "alisku_info")]
public System.String AliskuInfo { get; set; }
///
/// 批发团实例code
///
[SugarColumn(ColumnName = "instance_code")]
public System.String InstanceCode { get; set; }
///
/// 有赞商品别名
///
[SugarColumn(ColumnName = "yz_alias")]
public System.String YzAlias { get; set; }
///
/// 商品来源 0:精选货源 1:1688
///
[SugarColumn(ColumnName = "pro_source")]
public System.Int32 ProSource { get; set; }
///
/// 有赞sku信息
///
[SugarColumn(ColumnName = "yzsku_info")]
public System.String YzskuInfo { get; set; }
}
}