xinyimengzhaocaipingtai/OpenAuth.Repository/Domain/PpBiddingsupplier.cs

36 lines
876 B
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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;}
}
}