ComplianceServer/oldcode/Core.Model/Entity/BAS_LEFTMEMU.cs

43 lines
927 B
C#

namespace CRM.Core.Model.Entity
{
using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("aq_BAS_LEFTMEMU")]
public partial class BAS_LEFTMEMU
{
[Key]
public decimal MENUID { get; set; }
public decimal? MODULEMENUID { get; set; }
[Required]
[StringLength(50)]
public string MNAME { get; set; }
[Required]
[StringLength(200)]
public string URL { get; set; }
public short ISGROUP { get; set; }
public short ISSHOW { get; set; }
[StringLength(4)]
public string RIGHTID { get; set; }
public decimal? PARENTID { get; set; }
public decimal? SORTID { get; set; }
public DateTime? CTIME { get; set; }
public decimal? CREATEUSER { get; set; }
public string IMAGEURL { get; set; }
}
}