TG.WXCRM.V4/Model/Entity/SMS_BATCHMSGDETAIL.cs

19 lines
428 B
C#

namespace WX.CRM.Model.Entity
{
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
[Table("UPDEV.SMS_BATCHMSGDETAIL")]
public partial class SMS_BATCHMSGDETAIL
{
[Key]
public decimal PKID { get; set; }
[Required]
[StringLength(100)]
public string RESID { get; set; }
public decimal BATCHID { get; set; }
}
}