Files
WMS-Api/src/WMS.Web.Domain/Entitys/SendLog.cs
tongfei 739726cf37 优化
2024-03-28 14:12:45 +08:00

22 lines
460 B
C#

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; }
}
}