同步数据库备注到实体
continuous-integration/drone/push Build is passing

This commit is contained in:
hang
2024-09-20 22:45:48 +08:00
parent 3ee0c2ccc7
commit e9bb71f5c9
155 changed files with 209 additions and 77 deletions
@@ -16,7 +16,6 @@ namespace IRaCIS.Core.Application.Service
CreateMap<RoleCommand, Role>();
CreateMap<UserCommand, User>().ForMember(d => d.UserCode, x => x.Ignore());
CreateMap<UserType, UserTypeMenuAddOrEdit>().ReverseMap()
@@ -45,7 +44,6 @@ namespace IRaCIS.Core.Application.Service
CreateMap<UserType, UserTypeRoleView>()
.ForMember(t => t.MenuIds, u => u.MapFrom(c => c.UserTypeMenuList.Select(t => t.MenuId)));
CreateMap<Role, RoleDTO>();
CreateMap<Menu, MenuFunctionDTO>();