24 lines
702 B
C#
24 lines
702 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Mini.Web.Areas.Admin.Models
|
|
{
|
|
public class BasInnerUserModel
|
|
{
|
|
public int uid { get; set; }
|
|
public string uname { get; set; }
|
|
public int eid { get; set; }
|
|
public char gender { get; set; }
|
|
public DateTime? birthday { get; set; }
|
|
public string passwd { get; set; }
|
|
public int isdismiss { get; set; }
|
|
public DateTime ctime { get; set; }
|
|
public int createUser { get; set; }
|
|
public DateTime? utime { get; set; }
|
|
public int? updateuser { get; set; }
|
|
public string SnCode { get; set; }
|
|
}
|
|
}
|