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

25 lines
469 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(100)]
public string RESID { get; set; }
public decimal? TYPE { get; set; }
public decimal? STATUS { get; set; }
}
}