You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
using System;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using SqlSugar;
|
|
|
|
namespace Models
|
|
{
|
|
///<summary>
|
|
///
|
|
///</summary>
|
|
[SugarTable("VendorAndBrand")]
|
|
public partial class VendorAndBrand
|
|
{
|
|
public VendorAndBrand(){
|
|
|
|
|
|
}
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:False
|
|
/// </summary>
|
|
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
|
|
public long Id {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:商户编号
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public long? VendorId {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:
|
|
/// Default:
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public long? BrandId {get;set;}
|
|
|
|
/// <summary>
|
|
/// Desc:创建时间
|
|
/// Default:DateTime.Now
|
|
/// Nullable:True
|
|
/// </summary>
|
|
public DateTime? CreateTime {get;set;}
|
|
|
|
}
|
|
}
|
|
|