using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace DocumentServiceAPI.Model.cyDocumentModel
{
///
///
///
[SugarTable("Document_WinInfo")]
public partial class Document_WinInfo
{
public Document_WinInfo(){
}
///
/// Desc:
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey = true, IsIdentity = true)]
public int ID { get; set; }
///
/// Desc:
/// Default:
/// Nullable:False
///
public int ProjectId {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public int? IsWin {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public decimal? WinPrice {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string FirstWinCompany {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public decimal? FirstPrice {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string SecondWinCompany {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public decimal? SecondPrice {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public string ThirdCompany {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public decimal? ThirdPrice {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public int UnitId { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string FirstWinDefen { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string SecondWinDefen { get; set; }
///
/// Desc:
/// Default:
/// Nullable:True
///
public string ThirdWinDefen { get; set; }
}
}