using CSFramework.DB;
|
using System;
|
using System.Collections.Generic;
|
using System.Linq;
|
using System.Text;
|
using System.Threading.Tasks;
|
|
namespace CSFramework.DBTester
|
{
|
//指定表名,比如MySQL所有表名默认是小写,Oracle全大写
|
//[TableInfoAttribute("sys_adminuser")]
|
[TableInfoAttribute("SYS_ADMINUSER")]
|
//[TableInfoAttribute("sys_AdminUser")]
|
public class sys_AdminUser
|
{
|
public int isid { get; set; }
|
|
public string AccountType { get; set; }
|
|
public string Account { get; set; }
|
|
public string AccountName { get; set; }
|
|
public string Password { get; set; }
|
|
public string FlagLock { get; set; }
|
|
public DateTime LastLoginTime { get; set; }
|
|
public int LoginCount { get; set; }
|
|
public decimal Amount { get; set; }
|
}
|
}
|