29 lines
670 B
C#
29 lines
670 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.SMS_SENDLOG")]
|
|
public partial class SMS_SENDLOG
|
|
{
|
|
[Key]
|
|
public decimal SENDID { get; set; }
|
|
|
|
[StringLength(2000)]
|
|
public string SENDSTR { get; set; }
|
|
|
|
[StringLength(6)]
|
|
public string CLIENTCODE { get; set; }
|
|
|
|
public decimal? MSGSOURCEID { get; set; }
|
|
|
|
[StringLength(2000)]
|
|
public string RETURNMSG { get; set; }
|
|
|
|
public short SENDSUCCESS { get; set; }
|
|
|
|
public DateTime? SENDTIME { get; set; }
|
|
}
|
|
}
|