You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
2.6 KiB
46 lines
2.6 KiB
/*
|
|
Navicat MySQL Data Transfer
|
|
|
|
Source Server : he
|
|
Source Server Version : 50636
|
|
Source Host : localhost:3306
|
|
Source Database : hlb
|
|
|
|
Target Server Type : MYSQL
|
|
Target Server Version : 50636
|
|
File Encoding : 65001
|
|
|
|
Date: 2024-06-28 13:13:43
|
|
*/
|
|
|
|
SET FOREIGN_KEY_CHECKS=0;
|
|
|
|
-- ----------------------------
|
|
-- Table structure for pet
|
|
-- ----------------------------
|
|
DROP TABLE IF EXISTS `pet`;
|
|
CREATE TABLE `pet` (
|
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
|
`petName` varchar(20) NOT NULL,
|
|
`petType` varchar(20) NOT NULL COMMENT '宠物类型',
|
|
`sex` varchar(3) NOT NULL COMMENT '性别',
|
|
`birthday` date NOT NULL,
|
|
`pic` varchar(100) NOT NULL COMMENT '头像',
|
|
`state` int(11) NOT NULL DEFAULT '1' COMMENT '现在的状态 0 没有申请领养 1 被申请领养 2 已经被领养',
|
|
`remark` varchar(100) DEFAULT NULL COMMENT '备注',
|
|
PRIMARY KEY (`id`) USING BTREE
|
|
) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC;
|
|
|
|
-- ----------------------------
|
|
-- Records of pet
|
|
-- ----------------------------
|
|
INSERT INTO `pet` VALUES ('1', '衣服', '400', '轻', '2018-09-10', 'aa.jpg,ac.jpg,ae.jpg,ao.jpg', '1', ':积压库存,全新未售,多样款式,实惠选择。');
|
|
INSERT INTO `pet` VALUES ('2', '冰箱', '5000', '重', '2018-09-21', 'ba.jpg,bc.jpg,be.jpg,bo.jpg', '1', ':保鲜冷藏,节能高效,家庭必备,静音运行。');
|
|
INSERT INTO `pet` VALUES ('3', '大床', '8000', '重', '2018-01-21', 'ca.jpg,cc.jpg,ce.jpg,co.jpg', '1', ':宽敞舒适,储物实用,品质之选,睡梦港湾。');
|
|
INSERT INTO `pet` VALUES ('4', '电视', '12000', '重', '2018-11-21', 'da.jpg,dc.jpg,de.jpg,do.jpg', '1', ':高清大屏,智能互联,视听盛宴,家庭娱乐中心。');
|
|
INSERT INTO `pet` VALUES ('5', '洗衣机', '4000', '重', '2018-11-21', 'ea.jpg,ec.jpg,ee.jpg,eo.jpg', '2', ':高效洁净,节能节水,智能操作,家庭好帮手。');
|
|
INSERT INTO `pet` VALUES ('6', '裤子', '200', '轻', '2019-01-21', 'fa.jpg,fc.jpg,fe.jpg,fo.jpg', '1', ':舒适透气,时尚百搭,优质面料,展现个性风采。');
|
|
INSERT INTO `pet` VALUES ('7', '剃须刀', '200', '轻', '2023-12-14', 'ga.jpg,gc.jpg,ge.jpg,go.jpg', '0', ':锋利耐用,快速剃须,舒适贴面,男士首选。');
|
|
INSERT INTO `pet` VALUES ('8', '名包', '30000', '轻', '2024-01-04', 'ha.jpg,hc.jpg,he.jpg,ho.jpg', '2', ':经典设计,精湛工艺,奢华材质,时尚必备');
|
|
INSERT INTO `pet` VALUES ('9', '鞋子', '600', '轻', '2023-12-05', 'ka.jpg,kc.jpg,ke.jpg,ko.jpg', '2', ':轻盈舒适,防滑耐磨,时尚设计,彰显个性品味。');
|