Zxd.Core/code/Zxd.Entity/Zxd/BAS_ROLE.cs

33 lines
667 B
C#

using System;
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Zxd.Entity.Zxd
{
[Table("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; }
}
}