~~~[sql]
CREATE TABLE `xi_goods` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`dealer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商家ID',
`stores_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '门店ID',
`cate_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '分类ID',
`brands_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '品牌ID',
`express_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '快递ID',
`template_id` int(11) unsigned DEFAULT NULL COMMENT '模板ID',
`sn` varchar(32) NOT NULL DEFAULT '' COMMENT '商品唯一编码',
`name` varchar(64) NOT NULL DEFAULT '' COMMENT '名称',
`weight` float(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '重量(kg)',
`volume` float(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '体积(m³)',
`thumb` varchar(255) NOT NULL DEFAULT 'http://oss.dgyouduo.com/static/img/no-image.png' COMMENT '缩略图',
`banner` varchar(512) NOT NULL DEFAULT 'a:1:{i:0;s:53:"http://oss.dgyouduo.com/static/img/no-image-16x10.png";}' COMMENT '横幅(轮播图)',
`summary` varchar(128) NOT NULL DEFAULT '' COMMENT '摘要',
`content` text NOT NULL COMMENT '内容',
`price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '普通价格',
`market_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '市场价格',
`inventory` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '库存',
`view_count` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '浏览数',
`sale_count` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '销售数',
`sort` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
`is_free_shipping` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否包邮',
`is_hot` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否推荐',
`is_new` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否新品',
`is_real` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否实体商品',
`is_sale` tinyint(1) 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 '更新时间',
`saled_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '上架时间',
PRIMARY KEY (`id`),
UNIQUE KEY `sn` (`sn`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品';
~~~
~~~[sql]
CREATE TABLE `xi_goods_brands` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`dealer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商家ID',
`stores_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '门店ID',
`cate_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '分类ID',
`name` varchar(16) NOT NULL DEFAULT '' COMMENT '名称',
`description` varchar(128) NOT NULL DEFAULT '' COMMENT '描述',
`logo` varchar(255) NOT NULL DEFAULT 'http://oss.dgyouduo.com/static/img/no-image.png' 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`),
UNIQUE KEY `name` (`name`,`stores_id`,`cate_id`,`is_trash`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品品牌';
~~~
~~~[sql]
CREATE TABLE `xi_goods_category` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`dealer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商家ID',
`stores_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '门店ID',
`parent_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '父ID',
`parent_id_path` varchar(32) NOT NULL DEFAULT '' COMMENT '父ID路径',
`level` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '级别',
`name` varchar(32) NOT NULL DEFAULT '' COMMENT '名称',
`thumb` varchar(255) NOT NULL DEFAULT 'http://oss.dgyouduo.com/static/img/no-image.png' COMMENT '缩略图',
`sort` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
`is_show` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否显示在列表',
`is_hot` tinyint(1) 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`),
UNIQUE KEY `name` (`name`,`stores_id`,`parent_id`,`is_trash`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品分类';
~~~
~~~[sql]
CREATE TABLE `xi_goods_evaluate` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`member_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '会员ID',
`order_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '订单ID',
`goods_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商品ID',
`sku_key` varchar(32) DEFAULT NULL COMMENT '存放SKU库存量项目ID进行拼接',
`content` varchar(255) NOT NULL DEFAULT '' COMMENT '内容',
`images` varchar(512) NOT NULL DEFAULT '/img/no-image.png' COMMENT '图片',
`grade` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '评分',
`sort` tinyint(3) unsigned NOT NULL DEFAULT '0' COMMENT '排序',
`is_anonymity` tinyint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否匿名',
`is_audit` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '是否审核,0=>未审核,1=>审核通过,2=>审核驳回',
`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='商品评价';
~~~
~~~[sql]
CREATE TABLE `xi_goods_parameter` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`dealer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商家ID',
`stores_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '门店ID',
`cate_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '分类ID',
`name` varchar(32) NOT NULL DEFAULT '' COMMENT '名称',
`type` tinyint(1) unsigned NOT NULL DEFAULT '1' COMMENT '属性值类型(录入方式),1=>单行文本,2=>多行文本,3=>单选,4=>多选',
`default_values` varchar(255) NOT NULL DEFAULT '' 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`),
UNIQUE KEY `name` (`name`,`stores_id`,`cate_id`,`is_trash`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品参数';
~~~
~~~[sql]
CREATE TABLE `xi_goods_parameter_value` (
`param_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '参数ID',
`goods_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商品ID',
`value` varchar(255) NOT NULL DEFAULT '' COMMENT '参数值',
`created_at` int(11) unsigned NOT NULL DEFAULT '1451577600' COMMENT '创建时间',
UNIQUE KEY `param_id` (`param_id`,`goods_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品参数值';
~~~
~~~[sql]
CREATE TABLE `xi_goods_sku` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`dealer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商家ID',
`stores_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '门店ID',
`cate_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '分类ID',
`name` varchar(32) NOT NULL DEFAULT '' 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`),
UNIQUE KEY `name` (`name`,`stores_id`,`cate_id`,`is_trash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品库存量单位';
~~~
~~~[sql]
CREATE TABLE `xi_goods_sku_item` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`sku_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '库存量项目ID',
`name` varchar(16) NOT NULL DEFAULT '' 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`),
UNIQUE KEY `name` (`name`,`sku_id`,`is_trash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品库存量项目';
~~~
~~~[sql]
CREATE TABLE `xi_goods_sku_value` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`dealer_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商家ID',
`stores_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '门店ID',
`goods_id` int(11) unsigned NOT NULL DEFAULT '0' COMMENT '商品ID',
`sku_key` varchar(32) NOT NULL DEFAULT '' COMMENT '存放SKU库存量项目ID进行拼接',
`sn` varchar(32) NOT NULL DEFAULT '' COMMENT '商品唯一编码',
`thumb` varchar(255) NOT NULL DEFAULT 'http://oss.dgyouduo.com/static/img/no-image.png' COMMENT '缩略图',
`price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '普通价格',
`market_price` decimal(10,2) unsigned NOT NULL DEFAULT '0.00' COMMENT '市场价格',
`inventory` int(11) 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`),
UNIQUE KEY `sn` (`sn`),
UNIQUE KEY `sku_key` (`sku_key`,`stores_id`,`goods_id`,`is_trash`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 ROW_FORMAT=COMPACT COMMENT='商品库存量值';
~~~
- 简介
- 模型
- 模型规范
- 后台用户模型
- 商家用户模型
- 会员用户模型
- 配送员用户模型
- 文章模型
- 门店模型
- 门店模型(高德地图)
- 商品模型
- 模板商品模型
- 购物车模型
- 订单模型
- 配送订单模型
- 快递模型
- 积分商品模型
- 促销模型
- 平台API
- 首页
- 系统管理
- 账户管理
- 角色管理
- 权限管理
- 菜单管理
- 平台管理
- 会员端设定
- 积分设定
- 接口管理
- 微信接口
- 短信接口
- 快递接口
- 地图接口
- 支付宝接口
- 文章管理
- 分类管理
- 文章列表
- 审核管理
- 商家管理
- 商家列表
- 角色管理
- 权限管理
- 菜单管理
- 申请管理
- 门店管理
- 分类管理
- 门店列表
- 审核管理
- 配送员管理
- 配送员列表
- 会员管理
- 会员列表
- 商品管理
- 分类管理
- 品牌管理
- 商品列表
- 参数管理
- 规格管理
- 订单管理
- 订单列表
- 快递管理
- 快递列表
- 促销管理
- 红包管理
- 积分管理
- 商品管理
- 订单管理
- 财务管理
- 模板商品管理
- 分类管理
- 品牌管理
- 商品列表
- 参数管理
- 规格管理
- 商家API
- 首页
- 系统管理
- 账户管理
- 角色管理
- 权限管理
- 门店管理
- 门店列表
- 商品管理
- 分类管理
- 品牌管理
- 商品列表
- 参数管理
- 规格管理
- 模板商品
- 订单管理
- 订单列表
- 售后管理
- 投诉管理
- 快递管理
- 快递列表
- 配送员管理
- 配送员列表
- 促销管理
- 商品秒杀
- 订单满减
- 优惠券管理
- 财务管理
- 配送员API
- 首页
- 工作状态
- 订单管理
- 消息中心
- 个人中心
- 文章
- 钱包
- 系统
- 会员API
- 首页
- 商家
- 门店
- 商品
- 会员
- 收货地址
- 购物车
- 订单
- 订单售后
- 订单投诉
- 红包
- 优惠券
- 积分
- 文章
- 公共API
- 阿里云对象存储
- 微信公众平台
- 微信支付平台
- 支付宝
- 凌凯短信
- 快递鸟
- 接口返回码
- 20180104沟通记录
- 20180119沟通记录
- 20180130沟通记录
- 20180313沟通记录