1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- //------------------------------------------------------------------------------
- // <auto-generated>
- // This code was generated from a template.
- //
- // Manual changes to this file may cause unexpected behavior in your application.
- // Manual changes to this file will be overwritten if the code is regenerated.
- // </auto-generated>
- //------------------------------------------------------------------------------
- namespace EMISOnline.Entities
- {
- #pragma warning disable 1573
- using System;
- using System.Collections.Generic;
-
- /// <summary>
- /// Sys_FunctionCode
- /// </summary>
- public partial class Sys_FunctionCode
- {
- public Sys_FunctionCode()
- {
- this.Sys_Menu = new HashSet<Sys_Menu>();
- this.Sys_Role = new HashSet<Sys_Role>();
- }
-
- /// <summary>
- /// FunctionCode
- /// </summary>
- public string FunctionCode { get; set; }
- /// <summary>
- /// FunctionName
- /// </summary>
- public string FunctionName { get; set; }
- /// <summary>
- /// ParentFunctionCode
- /// </summary>
- public string ParentFunctionCode { get; set; }
- /// <summary>
- /// OrderNo
- /// </summary>
- public short OrderNo { get; set; }
-
- /// <summary>
- /// Sys_Menu
- /// </summary>
- public virtual HashSet<Sys_Menu> Sys_Menu { get; set; }
- /// <summary>
- /// Sys_Role
- /// </summary>
- public virtual HashSet<Sys_Role> Sys_Role { get; set; }
- }
- }
|