24 lines
523 B
C#
24 lines
523 B
C#
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
namespace CRM.Core.Model.Entity
|
|
{
|
|
[Table("aq_BAS_RIGHTGROUP")]
|
|
public partial class BAS_RIGHTGROUP
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string NAME { get; set; }
|
|
|
|
public decimal PARENTID { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public decimal? CREATEUSER { get; set; }
|
|
}
|
|
}
|