# shopping **Repository Path**: dzhang/shopping ## Basic Information - **Project Name**: shopping - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-06-28 - **Last Updated**: 2021-06-28 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # 技术栈 * Spring boot * MyBatis * Vue # 数据库 ## 说明 数据源用得是内存数据库`H2`,如果要生产用,请改成自己的数据源。 ## 表结构 ```sql drop table if exists t_product; create table t_product ( id long auto_increment primary key, name varchar(100) not null, details text, online boolean not null default true, created_at datetime not null default current_timestamp, updated_at datetime not null default current_timestamp ); ```