27 lines
612 B
C#
27 lines
612 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.SMS_MOBILEPOPULAR")]
|
|
public partial class SMS_MOBILEPOPULAR
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
public decimal BATCHID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(18)]
|
|
public string RESID { get; set; }
|
|
|
|
[StringLength(24)]
|
|
public string NUMENCRY { get; set; }
|
|
|
|
public decimal? CLICKCOUNT { get; set; }
|
|
|
|
public DateTime? CTIME { get; set; }
|
|
}
|
|
}
|