tycg_carviolation_BE/Traffic.Data/Models/AccountUser.cs

42 lines
878 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Traffic.Data.Models
{
public class AccountUser
{
public int Id { get; set; }
public string Account { get; set; }
public string UserName { get; set; }
public string Password { get; set; }
public string Email { get; set; }
public string PhoneNumber { get; set; }
public int RoleCodeId { get; set; }
public int PoliceStationId { get; set; }
public int CreatorId { get; set; }
public DateTime CreatedOn { get; set; }
public int UpdatorId { get; set; }
public DateTime UpdatedOn { get; set; }
public int ErrorCount { get; set; }
public DateTime ChangePwdOn { get; set; }
public int Status { get; set; }
}
}