💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 订单详情 ~~~[api] get:https://xcx.dangerouschain.com/addons/zjhj_mall/core/web/index.php?store_id=1&r=api/car/order-show *int:id=1#说明文字 <<< success <<< error ~~~ # 订单详情(本地) ~~~[api] get:http://weilian.bendi.com/addons/zjhj_mall/core/web/index.php?store_id=1&r=api/car/order-show *int:id=1#说明文字 <<< success <<< error ~~~ ```[sql] CREATE TABLE `hjmall_car_order` ( `id` int(11) NOT NULL AUTO_INCREMENT, `store_id` int(11) NOT NULL DEFAULT '0', `user_id` int(11) NOT NULL DEFAULT '0' COMMENT '用户id', `order_no` varchar(255) NOT NULL DEFAULT '' COMMENT '订单号', `total_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '订单总费用(包含运费)', `pay_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '实际支付总费用(含运费)', `express_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '运费', `name` varchar(255) DEFAULT NULL COMMENT '收货人姓名', `mobile` varchar(255) DEFAULT NULL COMMENT '收货人手机', `address` varchar(1000) DEFAULT NULL COMMENT '收货地址', `remark` varchar(1000) NOT NULL DEFAULT '' COMMENT '订单备注', `is_pay` smallint(6) NOT NULL DEFAULT '0' COMMENT '支付状态:0=未支付,1=已支付', `pay_type` smallint(6) NOT NULL DEFAULT '0' COMMENT '支付方式:1=微信支付', `pay_time` int(11) NOT NULL DEFAULT '0' COMMENT '支付时间', `is_send` smallint(1) NOT NULL DEFAULT '0' COMMENT '发货状态:0=未发货,1=已发货', `send_time` int(11) NOT NULL DEFAULT '0' COMMENT '发货时间', `express` varchar(255) NOT NULL DEFAULT '' COMMENT '物流公司', `express_no` varchar(255) NOT NULL DEFAULT '', `is_confirm` smallint(1) NOT NULL DEFAULT '0' COMMENT '确认收货状态:0=未确认,1=已确认收货', `confirm_time` int(11) NOT NULL DEFAULT '0' COMMENT '确认收货时间', `is_comment` smallint(1) NOT NULL DEFAULT '0' COMMENT '是否已评价:0=未评价,1=已评价', `apply_delete` smallint(1) NOT NULL DEFAULT '0' COMMENT '是否申请取消订单:0=否,1=申请取消订单', `addtime` int(11) NOT NULL DEFAULT '0', `is_delete` smallint(1) NOT NULL DEFAULT '0', `is_price` smallint(1) NOT NULL DEFAULT '0' COMMENT '是否发放佣金', `parent_id` int(11) NOT NULL DEFAULT '0' COMMENT '用户上级ID', `first_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '一级佣金', `second_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '二级佣金', `third_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '三级佣金', `coupon_sub_price` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '优惠券抵消金额', `content` text, `is_offline` int(11) NOT NULL DEFAULT '0' COMMENT '是否到店自提 0--否 1--是', `clerk_id` int(11) DEFAULT NULL COMMENT '核销员user_id', `address_data` text COMMENT '收货地址信息,json格式', `is_cancel` smallint(1) NOT NULL DEFAULT '0' COMMENT '是否取消', `offline_qrcode` longtext COMMENT '核销码', `before_update_price` decimal(10,2) DEFAULT NULL COMMENT '修改前的价格', `shop_id` int(11) DEFAULT NULL COMMENT '自提门店ID', `discount` decimal(11,2) DEFAULT NULL COMMENT '会员折扣', `user_coupon_id` int(11) DEFAULT NULL COMMENT '使用的优惠券ID', `integral` longtext COMMENT '积分使用', `give_integral` smallint(1) unsigned NOT NULL DEFAULT '0' COMMENT '是否发放积分【1=> 已发放 , 0=> 未发放】', `parent_id_1` int(11) DEFAULT '0' COMMENT '用户上二级ID', `parent_id_2` int(11) DEFAULT '0' COMMENT '用户上三级ID', `is_sale` int(11) DEFAULT '0' COMMENT '是否超过售后时间', `words` longtext COMMENT '商家留言', `version` varchar(255) DEFAULT NULL COMMENT '版本', `express_price_1` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '减免的运费', `is_recycle` smallint(1) NOT NULL DEFAULT '0', `rebate` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '自购返利', `before_update_express` decimal(10,2) NOT NULL DEFAULT '0.00' COMMENT '价格修改前的运费', `seller_comments` text COMMENT '商家备注', `mch_id` int(11) NOT NULL DEFAULT '0' COMMENT '入驻商户id', `order_union_id` int(11) NOT NULL DEFAULT '0' COMMENT '合并订单的id', `is_transfer` smallint(1) NOT NULL DEFAULT '0' COMMENT '是否已转入商户账户:0=否,1=是', `type` int(11) NOT NULL DEFAULT '0' COMMENT '0:普通订单 1大转盘订单', `share_price` decimal(11,2) NOT NULL DEFAULT '0.00' COMMENT '发放佣金的金额', `is_show` smallint(1) NOT NULL DEFAULT '1' COMMENT '是否显示 0--不显示 1--显示', PRIMARY KEY (`id`), KEY `addtime` (`addtime`), KEY `user_id` (`user_id`), KEY `order_no` (`order_no`(250)), KEY `is_pay` (`is_pay`), KEY `is_send` (`is_send`), KEY `is_confirm` (`is_confirm`), KEY `is_comment` (`is_comment`), KEY `is_price` (`is_price`), KEY `is_offline` (`is_offline`), KEY `is_cancel` (`is_cancel`), KEY `is_sale` (`is_sale`), KEY `is_recycle` (`is_recycle`), KEY `is_transfer` (`is_transfer`) ) ENGINE=MyISAM AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COMMENT='订单表'; ```