33 lines
761 B
C#
33 lines
761 B
C#
namespace WX.CRM.Model.Entity
|
|
{
|
|
using System;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
|
|
[Table("UPDEV.SMS_USERVERIFYCODE")]
|
|
public partial class SMS_USERVERIFYCODE
|
|
{
|
|
[Key]
|
|
public decimal PKID { get; set; }
|
|
|
|
[StringLength(50)]
|
|
public string USERNAME { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(100)]
|
|
public string VERIFYRESID { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(6)]
|
|
public string VERIFYCODE { get; set; }
|
|
|
|
[Required]
|
|
[StringLength(50)]
|
|
public string VERIFYTYPE { get; set; }
|
|
|
|
public DateTime EXPIRETIME { get; set; }
|
|
|
|
public DateTime CTIME { get; set; }
|
|
}
|
|
}
|