You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
915 B

using GDZZ.Application.Entity;
using Mapster;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace GDZZ.Application.Mapper
{
public class Mapper : IRegister
{
public void Register(TypeAdapterConfig config)
{
config.ForType<LiveMessage, LiveMessageList>()
.Map(d => d.ToContactId, s => s.CreatedUserId);
config.ForType<LiveHistoryContacts, LiveHistoryLists>()
.Map(d => d.Id, s => s.CreatedUserId);
1 year ago
config.ForType<Position, PositionOutput > ()
.Map(d => d.Value, s => s.Id)
.Map(d=>d.Label,s=>s.PositionName);
config.ForType<SysRegion, PositionOutput>()
.Map(d => d.Value, s => s.region_id)
.Map(d => d.Label, s => s.region_name);
}
1 year ago
}
}