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