26 lines
550 B
26 lines
550 B
3 years ago
|
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; }
|
||
|
}
|
||
|
}
|