啊鑫
2024-07-11 afbf8700d137710713db61955879d0f5acb73738
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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; }
    }
}