💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 订单详情 ~~~[api] get:/zm/order/detail *int:order_id=默认值# <<< success { "status":0, "msg": 'success' "data",{} } <<< error { "status": 1, "msg": '' } ~~~ ```[sql] DROP TABLE IF EXISTS `yh_room_order_record`; CREATE TABLE `yh_room_order_record` ( `id` int(11) NOT NULL AUTO_INCREMENT, `order_id` int(11) DEFAULT '0' COMMENT '主表关联ID', `admin_id` int(11) DEFAULT '0', `user_id` int(11) DEFAULT '0', `son_no` varchar(32) DEFAULT NULL COMMENT '子订单号', `tag` varchar(30) DEFAULT NULL COMMENT 'xiaoding,renchou,rengou,qianyue,wangqian', `building_area` decimal(6,2) DEFAULT NULL COMMENT '建筑面积', `housing_area` decimal(6,2) DEFAULT NULL COMMENT '套内面积', `total_price` decimal(10,2) DEFAULT NULL COMMENT '总价', `unit_price` decimal(10,2) DEFAULT '0.00' COMMENT '单价', `original_price` decimal(10,2) DEFAULT '0.00' COMMENT '原价', `final_price` decimal(10,2) DEFAULT NULL COMMENT '最终价格', `process_state` tinyint(1) DEFAULT '0' COMMENT '0默认,1通过,2驳回,3作废', `random_discount` decimal(10,0) DEFAULT '0' COMMENT '网络随机折扣', `chairman_discount` decimal(10,2) DEFAULT '0.00' COMMENT '董事长折扣', `role_discount` decimal(10,2) DEFAULT '0.00' COMMENT '角色折扣', `role_discount_text` varchar(30) DEFAULT NULL COMMENT '角色折扣说明', `payment_text` varchar(20) DEFAULT NULL COMMENT '付款方式ID', `payment_discount` decimal(10,2) DEFAULT '0.00' COMMENT '支付方式折扣', `activity_text` varchar(30) DEFAULT NULL COMMENT '活动折扣说明', `activity_discount` decimal(10,2) DEFAULT '0.00' COMMENT '活动折扣', `activity_price` decimal(10,0) DEFAULT '0' COMMENT '活动金额', `coupon_discount` decimal(10,0) DEFAULT '0' COMMENT '优惠券', `discount_explaint` varchar(100) DEFAULT NULL, `discount_formula` varchar(60) DEFAULT NULL, `diff_price` decimal(10,2) DEFAULT NULL COMMENT '认购和签约的面积差额', `pay_status` tinyint(1) DEFAULT '1' COMMENT '1已付款,2未付款', `pay_price` decimal(10,2) DEFAULT NULL COMMENT '本次应付定金', `order_price` decimal(10,2) DEFAULT NULL COMMENT '本次订单金额', `remark` varchar(255) DEFAULT NULL, `order_time` date DEFAULT NULL COMMENT '订单时间', `create_time` int(10) unsigned DEFAULT NULL, `delete_time` int(10) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=9 DEFAULT CHARSET=utf8 COMMENT='房间多次订单记录表'; ```