37 lines
887 B
C#
37 lines
887 B
C#
using System;
|
||
using System.Linq;
|
||
using System.Text;
|
||
using SqlSugar;
|
||
|
||
namespace OpenAuth.Repository.Domain
|
||
{
|
||
///<summary>
|
||
///招标代理与招标企业中间表
|
||
|
||
///</summary>
|
||
[SugarTable("pp_bidagencycompany")]
|
||
public partial class PpBidagencycompany
|
||
{
|
||
public PpBidagencycompany(){
|
||
|
||
|
||
}
|
||
/// <summary>
|
||
/// Desc:招标代理id(对应企业信息表)
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(IsPrimaryKey=true)]
|
||
public string AgencyId {get;set;}
|
||
|
||
/// <summary>
|
||
/// Desc:招标企业id(对应招标企业id)
|
||
/// Default:
|
||
/// Nullable:False
|
||
/// </summary>
|
||
[SugarColumn(IsPrimaryKey=true)]
|
||
public string BiddingCompanyId {get;set;}
|
||
|
||
}
|
||
}
|