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
{
///
/// 箱信息
///
public class BoxMapper : Profile
{
public BoxMapper()
{
CreateMap();
CreateMap();
}
}
}