using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Models
{
///
///
///
[SugarTable("VendorAndBrand")]
public partial class VendorAndBrand
{
public VendorAndBrand(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
public long Id {get;set;}
///
/// Desc:商户编号
/// Default:
/// Nullable:True
///
public long? VendorId {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public long? BrandId {get;set;}
///
/// Desc:创建时间
/// Default:DateTime.Now
/// Nullable:True
///
public DateTime? CreateTime {get;set;}
}
}