using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace EC_SeckillInfo
{
///
///询价时的选择项纪录主表
///
[SugarTable("EC_AskPriceNote")]
public partial class EC_AskPriceNote
{
public EC_AskPriceNote(){
}
///
/// Desc:记录编号
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
public int Keyid {get;set;}
///
/// Desc:询价记录编号
/// Default:
/// Nullable:True
///
public int? AspPriceProjectId {get;set;}
///
/// Desc:产生时间
/// Default:
/// Nullable:True
///
public DateTime? CreateTime {get;set;}
}
}