Dedecms数据库结构表名:dede_shops_orders字段说明如下:
表名:dede_shops_orders
(ENGINE=MyISAM/CHARSET=gbk) 说明:订单信息表 字段名 说明描述 具体参数 ip 登录IP char(15) NOT NULL , price 订单价格 float(13,2) NOT NULL DEFAULT '0.00' , oid 订单号 varchar(80) NOT NULL ,
userid 消费者ID int(10) NOT NULL , paytype ">支付方式 tinyint(2) NOT NULL DEFAULT '1' , state 状态 tinyint(1) NOT NULL DEFAULT '0' , dprice 配送费用 float(13,2) NOT NULL DEFAULT '0.00' , cartcount 购买数量 int(10) NOT NULL DEFAULT '0' , priceCount 总价格 float(13,2) NOT NULL , pid 配送方式 int(10) NOT NULL DEFAULT '0' , stime 下单时间 int(10) NOT NULL DEFAULT '0' , 索引:
KEY `stime` (`stime`),
KEY `userid` (`userid`),
KEY `oid` (`oid`)
时间: 2024-09-27 05:27:34