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.
 
 
 
 

24 lines
520 B

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; }
}
}