12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- 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; }
- }
-
-
-
- public class CTableCorrelationPageDatas
- {
-
-
-
- public int CTableId { get; set; }
-
-
-
- public List<int> PageIdDatas { get; set; }
- }
- }
|