68 lines
1.6 KiB
C#
68 lines
1.6 KiB
C#
namespace WinformGeneralDeveloperFrame
|
|
{
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Data.Entity.Spatial;
|
|
|
|
public partial class T_ACL_Menu
|
|
{
|
|
[StringLength(50)]
|
|
public string ID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string PID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Name { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Icon { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Seq { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string FunctionId { get; set; }
|
|
|
|
public int? Visible { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string WinformType { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string Url { get; set; }
|
|
|
|
[StringLength(100)]
|
|
public string WebIcon { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string SystemType_ID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Creator { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Creator_ID { get; set; }
|
|
|
|
public DateTime? CreateTime { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Editor { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string Editor_ID { get; set; }
|
|
|
|
public DateTime? EditTime { get; set; }
|
|
|
|
public int? Deleted { get; set; }
|
|
|
|
public int? IsToolBtn { get; set; }
|
|
|
|
[StringLength(200)]
|
|
public string ToolBtnList { get; set; }
|
|
}
|
|
}
|