22 lines
429 B
C#
22 lines
429 B
C#
using AutoMapper;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using WMS.Web.Core.Dto;
|
|
using WMS.Web.Domain.Entitys;
|
|
|
|
namespace WMS.Web.Domain.Mappers
|
|
{
|
|
/// <summary>
|
|
/// 箱信息
|
|
/// </summary>
|
|
public class BoxMapper : Profile
|
|
{
|
|
public BoxMapper()
|
|
{
|
|
CreateMap<Box, BoxResponse>();
|
|
CreateMap<BoxDetails, BoxDetailResponse>();
|
|
}
|
|
}
|
|
}
|