| 1234567891011121314151617 |
- using AutoMapper;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace Wms.Screen.Service.Mapper
- {
- public class MyProfile : Profile
- {
- public MyProfile()
- {
- // CreateMap<GetStockInAndOutRecordInfoRequest, BillErrorInfoRequest>();
- // CreateMap<SqlSugar.ZhongTian.SysBoardUserRelation, Dto.ZhongTian.Response.SysBoardUserRelationDto>();
- }
- }
- }
|