SACenter/SA.Entity/zxdcrm_Models/BasRoleCom.cs

52 lines
1.2 KiB
C#

using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace SA.Entity.zxdcrm_Models
{
///<summary>
///
///</summary>
[SugarTable("bas_role_com")]
public partial class BasRoleCom
{
public BasRoleCom(){
}
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")]
public int Id {get;set;}
/// <summary>
/// Desc:角色ID
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="roleid")]
public int? Roleid {get;set;}
/// <summary>
/// Desc:可管理的公司ID
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="companycode")]
public string? Companycode {get;set;}
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="ctime")]
public DateTime? Ctime {get;set;}
}
}