Compare commits
21 Commits
7f93d54788
...
695d2f85f8
Author | SHA1 | Date |
---|---|---|
|
695d2f85f8 | 3 months ago |
|
711ff13768 | 3 months ago |
|
7b99ae99b8 | 3 months ago |
|
3137820cf9 | 3 months ago |
|
e916b7da6a | 3 months ago |
|
17229b0b27 | 3 months ago |
|
9fe8d3966d | 3 months ago |
|
34e4ccfd06 | 3 months ago |
|
43e3294b3b | 3 months ago |
|
e9476da170 | 3 months ago |
|
77ea8837a2 | 3 months ago |
|
fbc98e878d | 3 months ago |
|
e9832938ee | 3 months ago |
|
ea0225f5e0 | 3 months ago |
|
7b6005d5ff | 3 months ago |
|
e83d2af237 | 3 months ago |
|
b4efeef89c | 3 months ago |
|
ef9a1fa11e | 3 months ago |
|
814e955f8e | 3 months ago |
|
fc17cce01c | 3 months ago |
|
83db66d93b | 3 months ago |
@ -1 +0,0 @@
|
||||
doc
|
@ -1 +0,0 @@
|
||||
model
|
After Width: | Height: | Size: 37 KiB |
After Width: | Height: | Size: 54 KiB |
After Width: | Height: | Size: 41 KiB |
After Width: | Height: | Size: 74 KiB |
After Width: | Height: | Size: 51 KiB |
After Width: | Height: | Size: 42 KiB |
After Width: | Height: | Size: 103 KiB |
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 25 KiB |
After Width: | Height: | Size: 72 KiB |
Before Width: | Height: | Size: 103 KiB After Width: | Height: | Size: 103 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 51 KiB |
After Width: | Height: | Size: 55 KiB |
Before Width: | Height: | Size: 80 KiB After Width: | Height: | Size: 80 KiB |
After Width: | Height: | Size: 31 KiB |
Before Width: | Height: | Size: 55 KiB After Width: | Height: | Size: 55 KiB |
After Width: | Height: | Size: 80 KiB |
Before Width: | Height: | Size: 277 KiB After Width: | Height: | Size: 277 KiB |
Before Width: | Height: | Size: 73 KiB After Width: | Height: | Size: 73 KiB |
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 132 KiB |
Before Width: | Height: | Size: 68 KiB After Width: | Height: | Size: 68 KiB |
Before Width: | Height: | Size: 28 KiB After Width: | Height: | Size: 28 KiB |
After Width: | Height: | Size: 70 KiB |
@ -1 +0,0 @@
|
||||
other
|
@ -0,0 +1,93 @@
|
||||
-- MySQL dump 10.13 Distrib 8.0.32, for Win64 (x86_64)
|
||||
--
|
||||
-- Host: localhost Database: fastweb
|
||||
-- ------------------------------------------------------
|
||||
-- Server version 8.0.16
|
||||
|
||||
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
|
||||
/*!50503 SET NAMES utf8mb4 */;
|
||||
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
|
||||
/*!40103 SET TIME_ZONE='+00:00' */;
|
||||
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
|
||||
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
|
||||
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
|
||||
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
|
||||
|
||||
--
|
||||
-- Table structure for table `artical`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `artical`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `artical` (
|
||||
`id` varchar(42) NOT NULL,
|
||||
`content` varchar(2000) NOT NULL,
|
||||
`created_date` datetime NOT NULL,
|
||||
`name` varchar(100) NOT NULL,
|
||||
`status` tinyint(1) NOT NULL,
|
||||
`type` int(11) NOT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `artical`
|
||||
--
|
||||
|
||||
LOCK TABLES `artical` WRITE;
|
||||
/*!40000 ALTER TABLE `artical` DISABLE KEYS */;
|
||||
INSERT INTO `artical` VALUES ('4028008192d0dbc10192d0dfb1bb0002','111111','2024-10-28 10:06:14','11111',1,1);
|
||||
/*!40000 ALTER TABLE `artical` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Table structure for table `user`
|
||||
--
|
||||
|
||||
DROP TABLE IF EXISTS `user`;
|
||||
/*!40101 SET @saved_cs_client = @@character_set_client */;
|
||||
/*!50503 SET character_set_client = utf8mb4 */;
|
||||
CREATE TABLE `user` (
|
||||
`id` varchar(42) NOT NULL,
|
||||
`account` varchar(40) NOT NULL,
|
||||
`age` varchar(255) DEFAULT NULL,
|
||||
`code` varchar(255) DEFAULT NULL,
|
||||
`created_date` date DEFAULT NULL,
|
||||
`email` varchar(255) DEFAULT NULL,
|
||||
`name` varchar(255) DEFAULT NULL,
|
||||
`password` varchar(200) NOT NULL,
|
||||
`phone` varchar(255) DEFAULT NULL,
|
||||
`sex` varchar(255) DEFAULT NULL,
|
||||
`status` int(11) NOT NULL,
|
||||
`type` varchar(255) DEFAULT NULL,
|
||||
PRIMARY KEY (`id`)
|
||||
) ENGINE=MyISAM DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
|
||||
/*!40101 SET character_set_client = @saved_cs_client */;
|
||||
|
||||
--
|
||||
-- Dumping data for table `user`
|
||||
--
|
||||
|
||||
LOCK TABLES `user` WRITE;
|
||||
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
|
||||
INSERT INTO `user` VALUES ('1','admin',NULL,'2',NULL,'954281769@qq.com','管理员','$2a$10$K8hufMApXkEDAglVhkMdrOi55WfBYSeNSTTKAD5TTNLKMqNuKfiMi',NULL,'1',1,'1'),('4028811a8f567670018f56beb7d80002','user1','18','1','2024-05-08','3151827263@qq.com','用户1','$2a$10$SgkBdts2DwdHv0zDCTuIWO06Wj/iz7/RsMU.UA.s2CHTyqAOTN1s2','','1',1,'2');
|
||||
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
|
||||
UNLOCK TABLES;
|
||||
|
||||
--
|
||||
-- Dumping routines for database 'fastweb'
|
||||
--
|
||||
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
|
||||
|
||||
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
|
||||
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
|
||||
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
|
||||
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
|
||||
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
|
||||
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
||||
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
||||
|
||||
-- Dump completed on 2024-10-28 15:03:49
|