using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace DocumentServiceAPI.Model.cyDocumentModel
{
///
///
///
[SugarTable("Document_OtherCompanyTenderInfo")]
public partial class Document_OtherCompanyTenderInfo
{
public Document_OtherCompanyTenderInfo(){
}
///
/// 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 string CompanyName {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public decimal? TenderPrice {get;set;}
///
/// Desc:
/// Default:
/// Nullable:True
///
public int? TenantID { get; set; }
}
}