33 lines
589 B
C#
33 lines
589 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_ROLE")]
|
|
public partial class BAS_ROLE
|
|
{
|
|
|
|
[Key]
|
|
public int ROLEID { get; set; }
|
|
|
|
public string RNAME { get; set; }
|
|
|
|
public int SORTID { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public int? CREATEUSER { get; set; }
|
|
|
|
public DateTime? UTIME { get; set; }
|
|
|
|
public int? UPDATEUSER { get; set; }
|
|
|
|
public string CODE { get; set; }
|
|
|
|
|
|
}
|
|
}
|