19 lines
427 B
C#
19 lines
427 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(18)]
|
|
public string RESID { get; set; }
|
|
|
|
public decimal BATCHID { get; set; }
|
|
}
|
|
}
|