34 lines
665 B
C#
34 lines
665 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("aq_BAS_ROLE")]
|
|
public partial class BAS_ROLE
|
|
{
|
|
|
|
[Key]
|
|
public int ROLEID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100)]
|
|
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; }
|
|
|
|
[StringLength(20)]
|
|
public string CODE { get; set; }
|
|
|
|
|
|
}
|
|
}
|