用户定位表

This commit is contained in:
wanggeng 2021-12-28 18:45:21 +08:00
parent 0c968f3d72
commit a8d5dee3fe

View File

@ -41,14 +41,14 @@
<!-- 建表 -->
<update id="createTable" parameterType="map">
CREATE TABLE `map_user_location` (
CREATE TABLE IF NOT EXISTS `map_user_location` (
`id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_location_id` char(36) DEFAULT NULL COMMENT '主键',
`user_lng` varchar(255) DEFAULT NULL COMMENT '用户经度',
`user_lat` varchar(255) DEFAULT NULL COMMENT '用户精度',
`is_overstep` int(1) DEFAULT '0' COMMENT '是否越界',
`user_username` varchar(255) DEFAULT NULL COMMENT '用户名',
`user_name` varbinary(255) DEFAULT NULL COMMENT '昵称',
`user_name` varchar(255) DEFAULT NULL COMMENT '昵称',
`creator` char(36) DEFAULT NULL COMMENT '创建人',
`gmt_create` datetime DEFAULT NULL COMMENT '创建时间',
`is_delete` int(1) DEFAULT '0' COMMENT '是否删除',