24 lines
520 B

4 years ago
using System;
using PetaPoco;
namespace Pingchuan.BeijingSafeguard.Model
{
[TableName("users")]
public class User
{
[Column("id")]
public int Id { set; get; }
[Column("real_name")]
public string RealName { set; get; }
[Column("login_name")]
public string LoginName { set; get; }
[Column("login_password")]
public string LoginPassWord { set; get; }
[Column("create_time")]
public DateTime CreateTime { set; get; }
}
}