using System;
|
using System.Collections.Generic;
|
|
#nullable disable
|
|
namespace zhengcaioa.Models
|
{
|
public partial class GadeRole
|
{
|
public GadeRole()
|
{
|
UsergGadeRoleSecondUserGadeRoles = new HashSet<UsergGadeRole>();
|
UsergGadeRoleUserGadeRoles = new HashSet<UsergGadeRole>();
|
}
|
|
public Guid Id { get; set; }
|
public Guid? FrameworkRoleId { get; set; }
|
public bool AnswerRoles { get; set; }
|
public bool XiaocaiKeTang { get; set; }
|
public bool XiaoCaiQandA { get; set; }
|
public bool GaveBook { get; set; }
|
public int Discount { get; set; }
|
public int BiddingDocumentsCount { get; set; }
|
public int ComplaintsDisputeCount { get; set; }
|
public int PerformanceDisputeCount { get; set; }
|
public decimal Price { get; set; }
|
public bool OnShelf { get; set; }
|
public DateTime? CreateTime { get; set; }
|
public string CreateBy { get; set; }
|
public DateTime? UpdateTime { get; set; }
|
public string UpdateBy { get; set; }
|
|
public virtual ICollection<UsergGadeRole> UsergGadeRoleSecondUserGadeRoles { get; set; }
|
public virtual ICollection<UsergGadeRole> UsergGadeRoleUserGadeRoles { get; set; }
|
}
|
}
|