123456789101112131415161718192021222324252627282930 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.ViewModels.System
- {
- public class PageFunctionPermissionView
- {
-
-
-
- public int Id { get; set; }
-
-
-
- public string FunctionName { get; set; }
-
-
-
- public string FunctionCode { get; set; }
-
-
-
- public int IsEnable { get; set; }
- }
- }
|