using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("sms_sendlog")] public partial class SmsSendlog { public SmsSendlog(){ } /// /// Desc:发送批次ID /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="sendid")] public int Sendid {get;set;} /// /// Desc:发送信息 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="sendstr")] public string? Sendstr {get;set;} /// /// Desc:发送账号代码 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="clientcode")] public string? Clientcode {get;set;} /// /// Desc:短信信息源(批次id/短信id) /// Default: /// Nullable:True /// [SugarColumn(ColumnName="msgsourceid")] public int? Msgsourceid {get;set;} /// /// Desc:返回信息 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="returnmsg")] public string? Returnmsg {get;set;} /// /// Desc:是否发送成功 /// Default:0 /// Nullable:True /// [SugarColumn(ColumnName="sendsuccess")] public int? Sendsuccess {get;set;} /// /// Desc:发送时间 /// Default: /// Nullable:True /// [SugarColumn(ColumnName="sendtime")] public DateTime? Sendtime {get;set;} } }