28 lines
652 B
C#
28 lines
652 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.HIS_SMS_BATCHMSGDETAIL_HIS")]
|
|
public partial class HIS_SMS_BATCHMSGDETAIL_HIS
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100)]
|
|
public string RESID { get; set; }
|
|
|
|
public decimal BATCHID { get; set; }
|
|
|
|
public decimal? SENDID { get; set; }
|
|
|
|
public short? SENDSUCCESS { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public DateTime? SENDTIME { get; set; }
|
|
}
|
|
}
|