您的位置:首页 > 编程语言 > Qt开发

QT+MYSQL 银行管理系统界面展示

2018-02-09 12:52 288 查看
MySql

1、客户信息管理
2、客户存款信息表

1、登录界面(不允许重复登录)
        username     password
2、主要功能
   1)开户 创建新的客户账号
   2)存款
   3)取款
   4)销户
   5)余额查询
   6)存款账号流水
   7)退出
   
   流水账号对应表:  
   create table checks
(
id int unsigned  not null auto_increment primary key,
user_name char(20) not null,
changedatetime char(56) null default "0000-00-00 00:00:00",
user_moneychange char(20) null default "0",
user_totalmoney char(20) null default "0"
);

   用户信息表创建与插入数据:
create table users
(
id int unsigned  not null auto_increment primary key,
user_name char(20) not null,
user_key char(20) not null,
truename char(20) null default "-",
birthday char(56) null default "0000-00-00",
tel char(13) null default "-",
user_totalmoney char(20) null default "0",
onlinestate tinyint unsigned null default 0 
);



















内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  QT MYSQL