using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace OpenAuth.Repository.Domain
{
///
///招标企业供应商中间表
///
[SugarTable("pp_biddingsupplier")]
public partial class PpBiddingsupplier
{
public PpBiddingsupplier(){
}
///
/// Desc:供应商id(对应企业信息表)
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public string SupplierId {get;set;}
///
/// Desc:招标企业id(对应招标企业id)
/// Default:
/// Nullable:False
///
[SugarColumn(IsPrimaryKey=true)]
public string BiddingCompanyId {get;set;}
}
}