123456789101112131415161718192021222324252627282930 |
- using OASystem.Domain.Dtos;
- using OASystem.Domain.Entities;
- using OASystem.Domain.Entities.System;
- using OASystem.Domain.ViewModels;
- using OASystem.Domain.ViewModels.System;
- namespace OASystem.Domain.AutoMappers
- {
- public class _baseMappingProfile : Profile
- {
- public _baseMappingProfile()
- {
- //CreateMap<OrderDto, Order>();
- #region Login
- CreateMap<LoginDto, Sys_Users>();
- #endregion
- #region 系统设置
-
- #region 部门
- CreateMap<Sys_DepartmentDto, Sys_Department>();
- CreateMap<Sys_Department, Sys_DepartmentView>();
- #endregion
- #endregion
- }
- }
- }
|