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