22 lines
460 B
C#
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; }
|
|
}
|
|
}
|