30 lines
665 B
C#
30 lines
665 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_INNERUSERROLE")]
|
|
public partial class BAS_INNERUSERROLE
|
|
{
|
|
[Key]
|
|
public decimal INNERUSERID { get; set; }
|
|
|
|
public decimal ROLEID { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public decimal? CREATEUSER { get; set; }
|
|
|
|
public DateTime? UTIME { get; set; }
|
|
|
|
public decimal? UPDATEUSER { get; set; }
|
|
|
|
public virtual BAS_INNERUSER? BAS_INNERUSER { get; set; }
|
|
|
|
public virtual BAS_ROLE BAS_ROLE { get; set; }
|
|
}
|
|
}
|