using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace EC_SeckillInfo
{
///
///
///
[SugarTable("EC_DemandQuote")]
public partial class EC_DemandQuote
{
public EC_DemandQuote(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true,IsIdentity=true)]
public int Keyid {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
public int DemandId {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
public string QuoteInfo {get;set;}
///
/// Desc:
/// Default:
/// Nullable:False
///
public string QuoteRemark {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public DateTime? QuoteTime {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public Guid? QuoterId {get;set;}
///
/// Desc:报价价格
/// Default:
/// Nullable:True
///
public decimal? QuoterPrice {get;set;}
}
}