crm.core/code/Crm.Core.Entity/Crm/BAS_ROLE.cs

35 lines
806 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Crm.Core.Entity.Crm
{
[Table("BAS_ROLE")]
public class BAS_ROLE
{
[Key]
public decimal ROLEID { get; set; }
public string? RNAME { get; set; }
public decimal SORTID { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
public DateTime? UTIME { get; set; }
public decimal? UPDATEUSER { get; set; }
public string? CODE { get; set; }
public string? REMARK { get; set; }
public virtual List<BAS_ROLERIGHTRESOURCE>? BAS_ROLERIGHTRESOURCE { get; set; }
public virtual BAS_INNERUSERROLE? BAS_INNERUSERROLE { get; set; }
}
}