ComplianceServer/oldcode/Core.Model/EntityFB/sms_batchmsgdetail.cs

13 lines
270 B
C#

using System.ComponentModel.DataAnnotations;
namespace CRM.Core.Model.EntityFB
{
public class sms_batchmsgdetail
{
[Key]
public int pkid { get; set; }
public string resid { get; set; }
public int batchid { get; set; }
}
}