~~~[sql]
CREATE TABLE `xi_member` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`username` varchar(32) NOT NULL DEFAULT '' COMMENT '用户名',
`password` char(32) NOT NULL DEFAULT '' COMMENT '密码',
`auth_key` varchar(32) DEFAULT NULL COMMENT '认证密钥',
`mobile` varchar(16) NOT NULL DEFAULT '' COMMENT '手机号码',
`avatar` varchar(255) NOT NULL DEFAULT 'http://oss.dgyouduo.com/static/img/no-image.png' COMMENT '头像',
`nickname` varchar(16) NOT NULL DEFAULT '' COMMENT '用户昵称',
`sex` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '性别,0=>未知,1=>男,2=>女',
`wechat_openid` varchar(32) DEFAULT NULL COMMENT '微信openid',
`is_trash` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '删除,0=>否,1=>是',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态,0=>禁用,1=>启用',
`created_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '创建时间',
`updated_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '更新时间',
PRIMARY KEY (`id`),
UNIQUE KEY `username` (`username`),
UNIQUE KEY `mobile` (`mobile`),
UNIQUE KEY `auth_key` (`auth_key`),
UNIQUE KEY `wechat_openid` (`wechat_openid`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COMMENT='会员';
~~~
~~~[sql]
CREATE TABLE `xi_member_address` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`member_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '会员ID',
`consignee` varchar(16) NOT NULL DEFAULT '' COMMENT '收货人',
`mobile` varchar(16) NOT NULL DEFAULT '' COMMENT '手机',
`email` varchar(32) NOT NULL COMMENT '邮箱',
`country` int(11) unsigned NOT NULL DEFAULT '86' COMMENT '国家',
`province` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '省份',
`city` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '城市',
`district` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '地区',
`twon` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '乡镇',
`address` varchar(64) NOT NULL DEFAULT '' COMMENT '详细地址',
`zipcode` varchar(8) NOT NULL DEFAULT '' COMMENT '邮编',
`longitude` varchar(16) NOT NULL COMMENT '经度',
`latitude` varchar(16) NOT NULL COMMENT '纬度',
`is_default` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否默认地址',
`sort` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
`is_trash` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '删除,0=>否,1=>是',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态,0=>禁用,1=>启用',
`created_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '创建时间',
`updated_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '更新时间',
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='会员地址';
~~~
~~~[sql]
CREATE TABLE `xi_member_integral` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`member_id` int(11) unsigned NOT NULL COMMENT '会员ID',
`money` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '金额',
`is_trash` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '删除,0=>否,1=>是',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态,0=>禁用,1=>启用',
`created_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '创建时间',
`updated_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '更新时间',
PRIMARY KEY (`id`),
UNIQUE KEY `member_id` (`member_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='会员积分';
~~~
~~~[sql]
CREATE TABLE `xi_member_integral_log` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`member_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '会员ID',
`integral_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '积分ID',
`operator_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '操作者ID',
`recharge_sn` varchar(32) NOT NULL DEFAULT '' COMMENT '充值唯一编码,生成规则用的是订单sn号的规则',
`operate` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '操作,0=>购物奖励,1=>购物兑换,2=>手动扣除,3=>手动充值',
`money` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '金额',
`before` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '变动前',
`after` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '变动后',
`remark` varchar(128) NOT NULL DEFAULT '' COMMENT '备注',
`is_trash` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '删除,0=>否,1=>是',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态,0=>禁用,1=>启用',
`created_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '创建时间',
`updated_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '更新时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='会员积分记录';
~~~
~~~[sql]
CREATE TABLE `xi_member_wallet` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`member_id` int(11) unsigned NOT NULL COMMENT '会员ID',
`money` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '金额',
`is_trash` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '删除,0=>否,1=>是',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态,0=>禁用,1=>启用',
`created_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '创建时间',
`updated_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '更新时间',
PRIMARY KEY (`id`),
UNIQUE KEY `member_id` (`member_id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='会员钱包';
~~~
~~~[sql]
CREATE TABLE `xi_member_wallet_log` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`member_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '会员ID',
`wallet_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '钱包ID',
`operator_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '操作者ID',
`recharge_sn` varchar(32) NOT NULL DEFAULT '' COMMENT '充值唯一编码,生成规则用的是订单sn号的规则',
`operate` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '操作,0=>会员提现,1=>会员充值,2=>手动扣除,3=>手动充值,4=>提现反驳补回余额,5=>购物消费,6=>分销奖励',
`money` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '金额',
`before` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '变动前',
`after` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '变动后',
`remark` varchar(128) NOT NULL DEFAULT '' COMMENT '备注',
`is_trash` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '删除,0=>否,1=>是',
`status` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '状态,0=>禁用,1=>启用',
`created_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '创建时间',
`updated_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '更新时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='会员钱包记录';
~~~
- 简介
- 模型
- 模型规范
- 后台用户模型
- 商家用户模型
- 会员用户模型
- 配送员用户模型
- 文章模型
- 门店模型
- 门店模型(高德地图)
- 商品模型
- 模板商品模型
- 购物车模型
- 订单模型
- 配送订单模型
- 快递模型
- 积分商品模型
- 促销模型
- 平台API
- 首页
- 系统管理
- 账户管理
- 角色管理
- 权限管理
- 菜单管理
- 平台管理
- 会员端设定
- 积分设定
- 接口管理
- 微信接口
- 短信接口
- 快递接口
- 地图接口
- 支付宝接口
- 文章管理
- 分类管理
- 文章列表
- 审核管理
- 商家管理
- 商家列表
- 角色管理
- 权限管理
- 菜单管理
- 申请管理
- 门店管理
- 分类管理
- 门店列表
- 审核管理
- 配送员管理
- 配送员列表
- 会员管理
- 会员列表
- 商品管理
- 分类管理
- 品牌管理
- 商品列表
- 参数管理
- 规格管理
- 订单管理
- 订单列表
- 快递管理
- 快递列表
- 促销管理
- 红包管理
- 积分管理
- 商品管理
- 订单管理
- 财务管理
- 模板商品管理
- 分类管理
- 品牌管理
- 商品列表
- 参数管理
- 规格管理
- 商家API
- 首页
- 系统管理
- 账户管理
- 角色管理
- 权限管理
- 门店管理
- 门店列表
- 商品管理
- 分类管理
- 品牌管理
- 商品列表
- 参数管理
- 规格管理
- 模板商品
- 订单管理
- 订单列表
- 售后管理
- 投诉管理
- 快递管理
- 快递列表
- 配送员管理
- 配送员列表
- 促销管理
- 商品秒杀
- 订单满减
- 优惠券管理
- 财务管理
- 配送员API
- 首页
- 工作状态
- 订单管理
- 消息中心
- 个人中心
- 文章
- 钱包
- 系统
- 会员API
- 首页
- 商家
- 门店
- 商品
- 会员
- 收货地址
- 购物车
- 订单
- 订单售后
- 订单投诉
- 红包
- 优惠券
- 积分
- 文章
- 公共API
- 阿里云对象存储
- 微信公众平台
- 微信支付平台
- 支付宝
- 凌凯短信
- 快递鸟
- 接口返回码
- 20180104沟通记录
- 20180119沟通记录
- 20180130沟通记录
- 20180313沟通记录