| 1234567891011121314151617181920212223 |
- using Abp.Application.Services.Dto;
- using Abp.AutoMapper;
- using VberZero.AppService.Base.TreeBase.Dto;
- using VberZero.BaseSystem;
- namespace VberZero.AppService.Functions.Dto;
- [AutoMapTo(typeof(SysFunction)), AutoMapFrom(typeof(SysFunction))]
- public class FunctionDto : VzTreeEntityDto<int?>
- {
- public string Name { get; set; }
- public string DisplayName { get; set; }
- public string PermissionName { get; set; }
- public int FunctionType { get; set; }
- public string Action { get; set; }
- public string Controller { get; set; }
- public string Url { get; set; }
- public string Icon { get; set; }
- public string Class { get; set; }
- public string Script { get; set; }
- public bool NeedAuth { get; set; }
- }
|