微擎模块安装文件manifest.xml



    
        
        
        
        
        
        
        
        
    

    
        
            
            
            
            
            
            
            
            
            
            
            
            
        

        
            
            
            
            
            
            
            
            
            
            
            
        

        
    

    
        
            
        

        
            
            
            
        

        
            
        

        
            
        

        
            
        

        
            
        

    

     -- phpMyAdmin SQL Dump
-- version 4.1.6
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: 2015-03-17 09:50:23
-- 服务器版本: 5.5.39
-- PHP Version: 5.4.31

SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";

--
-- Database: `we7_prowx3`
--

-- --------------------------------------------------------

--
-- 表的结构 `ims_we7_store_cart`
--

CREATE TABLE IF NOT EXISTS `ims_we7_store_cart` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '主键',
  `goodsid` int(10) unsigned NOT NULL COMMENT '商品编号',
  `quantity` int(11) NOT NULL,
  `uid` varchar(50) NOT NULL COMMENT '微信会员OPENID OR UID',
  `uniacid` int(10) unsigned NOT NULL,
  `createtime` int(10) unsigned NOT NULL COMMENT '加入购物车时间',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- 表的结构 `ims_we7_store_category`
--

CREATE TABLE IF NOT EXISTS `ims_we7_store_category` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '分类id',
  `name` varchar(30) NOT NULL COMMENT '类名',
  `orderno` int(10) unsigned NOT NULL COMMENT '排序',
  `uniacid` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- 表的结构 `ims_we7_store_goods`
--

CREATE TABLE IF NOT EXISTS `ims_we7_store_goods` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT COMMENT '主键',
  `sn` varchar(30) NOT NULL COMMENT '条码',
  `name` varchar(50) NOT NULL COMMENT '品名',
  `image` varchar(255) NOT NULL,
  `price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '价格',
  `cost` decimal(10,2) NOT NULL COMMENT '成本价',
  `quantity` int(11) NOT NULL,
  `uniacid` int(10) unsigned NOT NULL COMMENT '统一公众号',
  `createtime` int(10) unsigned NOT NULL COMMENT '添加日期',
  `status` int(11) NOT NULL COMMENT '1:下架, 2: 上架',
  `categoryid` int(11) NOT NULL COMMENT '分类 id',
  PRIMARY KEY (`id`),
  KEY `sn` (`sn`),
  KEY `uniacid` (`uniacid`),
  KEY `categoryid` (`categoryid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT='商品表' AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- 表的结构 `ims_we7_store_items`
--

CREATE TABLE IF NOT EXISTS `ims_we7_store_items` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `orderid` int(10) unsigned NOT NULL COMMENT '订单编号',
  `goodsid` int(10) unsigned NOT NULL,
  `name` varchar(30) NOT NULL COMMENT '品名',
  `image` varchar(100) NOT NULL,
  `price` decimal(10,2) NOT NULL COMMENT '售价',
  `quantity` int(11) NOT NULL COMMENT '购买数量',
  `cost` decimal(10,2) NOT NULL COMMENT '实时成本',
  `uniacid` int(10) unsigned NOT NULL,
  PRIMARY KEY (`id`),
  KEY `uniacid` (`uniacid`),
  KEY `orderid` (`orderid`),
  KEY `goodsid` (`goodsid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- 表的结构 `ims_we7_store_orders`
--

CREATE TABLE IF NOT EXISTS `ims_we7_store_orders` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `uid` int(10) unsigned NOT NULL,
  `nickname` varchar(30) NOT NULL,
  `realname` varchar(30) NOT NULL,
  `uniacid` int(10) unsigned NOT NULL,
  `sn` varchar(30) NOT NULL,
  `amount` decimal(10,2) NOT NULL COMMENT '金额合计',
  `province` varchar(30) NOT NULL,
  `city` varchar(30) NOT NULL,
  `district` varchar(30) NOT NULL,
  `createtime` int(10) unsigned NOT NULL,
  `paytime` int(10) unsigned NOT NULL COMMENT '付款日期',
  `status` tinyint(1) NOT NULL DEFAULT '1' COMMENT '1:未付款;2已付款',
  PRIMARY KEY (`id`),
  KEY `uid` (`uid`),
  KEY `uniacid` (`uniacid`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- 表的结构 `ims_we7_store_user`
--

CREATE TABLE IF NOT EXISTS `ims_we7_store_user` (
  `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `uid` int(10) unsigned NOT NULL,
  `uniacid` int(10) unsigned NOT NULL,
  `total` decimal(10,2) NOT NULL COMMENT '消费总金额',
  PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;
    
    ]]>

     DROP TABLE IF EXISTS `ims_we7_store_cart`;
DROP TABLE IF EXISTS `ims_we7_store_category`;
DROP TABLE IF EXISTS `ims_we7_store_goods`;
DROP TABLE IF EXISTS `ims_we7_store_items`;
DROP TABLE IF EXISTS `ims_we7_store_orders`;
DROP TABLE IF EXISTS `ims_we7_store_user`;
    ]]>

    

你可能感兴趣的:(微擎,php笔记)