ComplianceServer/oldcode/Core.Model/Entity/soft_resetpwd.cs

20 lines
554 B
C#

using System;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace CRM.Core.Model.Entity
{
[Table("soft_resetpwd")]
public class soft_resetpwd
{
[Key]
public decimal ID { get; set; }
public string soft_username { get; set; }
public string resid { get; set; }
public DateTime? ctime { get; set; }
public string newpassword { get; set; }
public string companycode { get; set; }
public decimal userid { get; set; }
}
}