ComplianceServer/oldcode/Model/Entity/SOFT_RESETPWD.cs

20 lines
512 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace WX.CRM.Model.Entity
{
[Table("UPDEV.SOFT_RESETPWD")]
public class SOFT_RESETPWD
{
[Key]
public Decimal PKID { get; set; }
public string SOFT_USERNAME { get; set; }
public string RESID { get; set; }
public DateTime CTIME { get; set; }
public string NEWPASSWORD { get; set; }
public Decimal USERID { get; set; }
}
}