You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
550 B
25 lines
550 B
using System;
|
|
using PetaPoco;
|
|
|
|
namespace Pingchuan.BeijingSafeguard.Model.Domain
|
|
{
|
|
[ExplicitColumns]
|
|
[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; }
|
|
}
|
|
}
|
|
|