- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace YLShipBuildLandMap.Entity.ViewModel.SystemSetting
- {
- public class FunctionCodeView
- {
- public string FunctionCode { get; set; }
- public string FunctionName { get; set; }
- public string ParentFunctionCode { get; set; }
- public short OrderNo { get; set; }
- }
- }
|