25 lines
468 B
C#
25 lines
468 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.SMS_RESCODE")]
|
|
public partial class SMS_RESCODE
|
|
{
|
|
|
|
|
|
[Key]
|
|
[StringLength(10)]
|
|
public string CODE { get; set; }
|
|
|
|
[StringLength(18)]
|
|
public string RESID { get; set; }
|
|
|
|
public decimal? TYPE { get; set; }
|
|
|
|
public decimal? STATUS { get; set; }
|
|
|
|
|
|
}
|
|
}
|