| 12345678910111213141516171819202122 |
- 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; }
- }
- }
|