using SqlSugar;
using System;
using System.Collections.Generic;
using System.Text;
namespace Operater.DbModel
{
///
///
///
[SugarTable("daifa_product")]
public class DaifaProduct
{
///
///
///
public DaifaProduct()
{
}
///
/// 1688商品id
///
[SugarColumn(ColumnName = "id", IsPrimaryKey = true)]
public System.String Id { get; set; }
///
/// 主图
///
[SugarColumn(ColumnName = "img")]
public System.String Img { get; set; }
///
/// 最小价格
///
[SugarColumn(ColumnName = "min_price")]
public System.Decimal? MinPrice { get; set; }
///
/// 最大价格
///
[SugarColumn(ColumnName = "max_price")]
public System.Decimal? MaxPrice { get; set; }
///
/// 商品状态。published:上网状态;member expired:会员撤销;auto expired:自然过期;expired:过期(包含手动过期与自动过期);member deleted:会员删除;modified:修改;new:新发;deleted:删除;TBD:to be delete;approved:审批通过;auditing:审核中;untread:审核不通过;
///
[SugarColumn(ColumnName = "product_status")]
public System.String ProductStatus { get; set; }
///
/// 标题
///
[SugarColumn(ColumnName = "subject")]
public System.String Subject { get; set; }
///
/// 成交量
///
[SugarColumn(ColumnName = "booked_count")]
public System.Int64? BookedCount { get; set; }
///
/// 是否支持网上交易
///
[SugarColumn(ColumnName = "support_online_trade")]
public System.Int32? SupportOnlineTrade { get; set; }
///
/// 买家保障
///
[SugarColumn(ColumnName = "buyer_protection")]
public System.String BuyerProtection { get; set; }
///
/// 是否铺货 0否 1是
///
[SugarColumn(ColumnName = "is_distribute")]
public System.Int32? IsDistribute { get; set; }
///
/// 创建时间
///
[SugarColumn(ColumnName = "create_time")]
public System.DateTime? CreateTime { get; set; }
}
}