123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace OASystem.Domain.Dtos.System
- {
- public class PageFunDto
- {
- private int pageid;
- private List<int> bindFunArr;
- private int uid;
-
- public int Pageid { get => pageid; set => pageid = value; }
- public List<int> BindFunArr { get => bindFunArr; set => bindFunArr = value; }
- public int Uid { get => uid; set => uid = value; }
- }
-
-
-
- public class OperationFunInitDta
- {
-
-
-
-
-
- public int Status { get; set; }
-
-
-
- public int Id { get; set; }
-
-
-
- public string FunctionName { get; set; }
-
-
-
- public string FunctionCode { get; set; }
-
-
-
- public int IsEnable { get; set; }
-
-
-
-
- public int CreateUserId { get; set; }
-
-
-
- public string Remark { get; set; }
-
- }
- public class DelFunInitDta
- {
-
-
-
- public int Id { get; set; }
- public int DeleteUserId { get; set; }
- }
- }
|