ComplianceServer/oldcode/Core.Model/Entity/BAS_INNERUSERROLE.cs

28 lines
597 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[Table("aq_BAS_INNERUSERROLE")]
public partial class BAS_INNERUSERROLE
{
[Key]
[Column(Order = 0)]
public int INNERUSERID { get; set; }
[Key]
[Column(Order = 1)]
public int ROLEID { get; set; }
public DateTime? CTIME { get; set; }
public int? CREATEUSER { get; set; }
public DateTime? UTIME { get; set; }
public int? UPDATEUSER { get; set; }
}
}