This commit is contained in:
tongfei
2024-03-28 14:12:45 +08:00
parent 18ed2a7d82
commit 739726cf37
6 changed files with 113 additions and 1 deletions

View File

@@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations.Schema;
using System.Text;
using WMS.Web.Core;
namespace WMS.Web.Domain.Entitys
{
/// <summary>
/// 短信和邮箱发送日志表
/// </summary>
[Serializable]
[Table("t_wms_send_log")]
public class SendLog : EntityBase
{
/// <summary>
/// ID
/// </summary>
public override int Id { get; set; }
}
}