# InterView **Repository Path**: JersBadaner/inter-view ## Basic Information - **Project Name**: InterView - **Description**: 面试题 - **Primary Language**: Java - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2023-02-21 - **Last Updated**: 2023-02-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # InterView #### 介绍 面试笔试 #### 软件架构 软件架构说明 #### 安装教程 1. xxxx 2. xxxx 3. xxxx #### 使用说明 还添加了线程类,因为我考虑到金钱的操作必须保证安全,以后如果添加Control层的话会使用到 每个操作我都进行了test 下面是SQL创表的代码 ```mysql CREATE TABLE `user` ( `user_id` INT(10) NOT NULL auto_increment comment '用户ID', `user_name` INT(20) not null comment '用户昵称', key `user_id` (`user_id`) )engine=Innodb default charset utf8; CREATE TABLE `user_wallet` ( `user_id` INT(10) NOT NULL auto_increment comment '用户ID', `balance` INT(20) not null comment '用户余额', `paying` INT(20) not null comment '付款中', key `user_id` (`user_id`) )engine=Innodb default charset utf8; CREATE TABLE `user_log` ( `index` INT(10) not null auto_increment comment '序号', `user_id` INT(10) NOT NULL comment '用户ID', `uer_log` varchar(100) not null comment '操作日志', key `index` (`index`) )engine=Innodb default charset utf8; CREATE TABLE `commodity` ( `commodity_id` INT(10) NOT NULL auto_increment comment '商品ID', `price` INT(20) not null comment '价格', `name` varchar(100) not null comment '商品名', key `commodity_id` (`commodity_id`) ) engine = Innodb default charset utf8; ``` #### 参与贡献 1. Fork 本仓库 2. 新建 Feat_xxx 分支 3. 提交代码 4. 新建 Pull Request #### 特技 1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md 2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com) 3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目 4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目 5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help) 6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)