36 Star 382 Fork 222

exclusiver / springcloud2020

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
t_account.sql 931 Bytes
一键复制 编辑 原始数据 按行查看 历史
exclusiver 提交于 2020-03-13 14:27 . Seata(Storage-service)
/*
Navicat Premium Data Transfer
Source Server : CentOS虚拟机
Source Server Type : MySQL
Source Server Version : 50728
Source Host : 192.168.113.6:3306
Source Schema : seata_account
Target Server Type : MySQL
Target Server Version : 50728
File Encoding : 65001
Date: 13/03/2020 10:06:13
*/
SET NAMES utf8mb4;
-- ----------------------------
-- Table structure for t_account
-- ----------------------------
DROP TABLE IF EXISTS `t_account`;
CREATE TABLE `t_account` (
`id` bigint(11) NOT NULL AUTO_INCREMENT,
`user_id` bigint(11) NULL DEFAULT NULL COMMENT '用户id',
`total` decimal(10, 0) NULL DEFAULT NULL COMMENT '总额度',
`used` decimal(10, 0) NULL DEFAULT NULL COMMENT '已用额度',
`residue` decimal(10, 0) NULL DEFAULT NULL COMMENT '剩余可用额度',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB AUTO_INCREMENT = 2 CHARACTER SET = utf8mb4;
Java
1
https://gitee.com/exclusiver/springcloud2020.git
git@gitee.com:exclusiver/springcloud2020.git
exclusiver
springcloud2020
springcloud2020
master

搜索帮助