using SqlSugar; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace OpenAuth.Repository.Domain { /// ///企业报名表 /// [SugarTable("pp_registration")] public class PpRegistration { public PpRegistration() { } /// /// Desc:企业id /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string CompanyId { get; set; } /// /// Desc:用户id /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string BiddingInfoId { get; set; } } }