增加订阅通知

This commit is contained in:
18942506660
2024-03-26 15:32:17 +08:00
parent df821329ef
commit f355f35733
15 changed files with 960 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using AutoMapper;
using System;
using System.Collections.Generic;
using System.Text;
using WMS.Web.Core.Dto.SubscribeNotification;
using WMS.Web.Domain.Entitys;
namespace WMS.Web.Domain.Mappers
{
/// <summary>
/// 订阅通知
/// </summary>
public class SubscribeNotificationMapper : Profile
{
public SubscribeNotificationMapper()
{
CreateMap<SubscribeNotification, SubscribeNotification>();
CreateMap<SaveSubscribeNotificationRequest, SubscribeNotification>();
CreateMap<EditSubscribeNotificationRequest, SubscribeNotification>();
}
}
}