using System; using System.ComponentModel.DataAnnotations; namespace CRM.Core.Model.EntityFB { public class sms_batchmsgdetail_his { [Key] public int pkid { get; set; } public string resid { get; set; } public int batchid { get; set; } public int sendid { get; set; } public int sendsuccess { get; set; } public DateTime ctime { get; set; } public DateTime sendtime { get; set; } } }