短信服务

This commit is contained in:
tongfei
2024-03-29 15:15:43 +08:00
parent 2f224fcaf3
commit 806af3bb70
24 changed files with 829 additions and 93 deletions

View File

@@ -0,0 +1,65 @@
using MimeKit;
using System;
using System.Collections.Generic;
using System.Text;
namespace WMS.Web.Core.Dto
{
public class SendDataDto
{
/// <summary>
/// 客户编码
/// </summary>
public string CustomerCode { get; set; }
/// <summary>
/// 客户名称
/// </summary>
public string CustomerName { get; set; }
/// <summary>
/// 手机号码
/// </summary>
public string PhoneNumbers { get; set; }
/// <summary>
/// 邮箱
/// </summary>
public string Emails { get; set; }
/// <summary>
/// 邮箱
/// </summary>
public List<MailboxAddress> EmailList { get; set; } = new List<MailboxAddress>();
/// <summary>
/// 明细
/// </summary>
public List<SendDataDetailsDto> Details { get; set; } = new List<SendDataDetailsDto>();
}
/// <summary>
/// 明细
/// </summary>
public class SendDataDetailsDto
{
/// <summary>
/// 物料名称
/// </summary>
public string MaterialName { get; set; }
/// <summary>
/// 物料编码
/// </summary>
public string MaterialNumber { get; set; }
/// <summary>
/// 物料规格型号
/// </summary>
public string Specifications { get; set; }
/// <summary>
/// 数量
/// </summary>
public decimal Qty { get; set; }
}
}