28 lines
567 B
C#
28 lines
567 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Hg.Core.Entity
|
|
{
|
|
[Table("aq_BAS_INNERUSERROLE")]
|
|
public partial class BAS_INNERUSERROLE
|
|
{
|
|
[Column(Order = 0)]
|
|
public int INNERUSERID { get; set; }
|
|
|
|
[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; }
|
|
|
|
}
|
|
}
|