MyProfile.cs 427 B

1234567891011121314151617
  1. using AutoMapper;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace Wms.Screen.Service.Mapper
  6. {
  7. public class MyProfile : Profile
  8. {
  9. public MyProfile()
  10. {
  11. // CreateMap<GetStockInAndOutRecordInfoRequest, BillErrorInfoRequest>();
  12. // CreateMap<SqlSugar.ZhongTian.SysBoardUserRelation, Dto.ZhongTian.Response.SysBoardUserRelationDto>();
  13. }
  14. }
  15. }