30 lines
690 B
C#
30 lines
690 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.SMS_FROMEMAIL")]
|
|
public partial class SMS_FROMEMAIL
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string TRADECODE { get; set; }
|
|
|
|
[StringLength(4000)]
|
|
public string EMAIL_CONTENT { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
|
|
public decimal? IS_SEND { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string TRADEPWD { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string RESID { get; set; }
|
|
}
|
|
}
|