优化
This commit is contained in:
21
src/WMS.Web.Domain/Entitys/SendLog.cs
Normal file
21
src/WMS.Web.Domain/Entitys/SendLog.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user