💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
``` CREATE TABLE `bc_marriage_proposals` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) DEFAULT NULL, `add_time` int(11) DEFAULT NULL, `status` int(2) DEFAULT NULL, `start_time` int(11) DEFAULT NULL, `end_time` int(11) DEFAULT NULL, `top` int(2) DEFAULT NULL COMMENT '值为1是置顶', `pay_states` int(2) DEFAULT NULL COMMENT '1为支付成功', `number` int(30) DEFAULT NULL COMMENT '订单号', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='征婚表'; ``` ``` CREATE TABLE `bc_marriage_proposal_tops` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) DEFAULT NULL, `add_time` int(11) DEFAULT NULL, `status` int(2) DEFAULT NULL, `start_time` int(11) DEFAULT NULL, `end_time` int(11) DEFAULT NULL, `top` int(2) DEFAULT NULL COMMENT '值为1是置顶', `pay_states` int(2) DEFAULT NULL COMMENT '1为支付成功', `number` int(30) DEFAULT NULL COMMENT '订单号', `prices` decimal(10,2) DEFAULT NULL, `top_prices` decimal(10,2) DEFAULT NULL, `shop_id` int(11) DEFAULT NULL COMMENT '金额列表ID', `mp_id` int(11) DEFAULT NULL COMMENT '征婚订单ID', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=66 DEFAULT CHARSET=utf8 COMMENT='征婚'; ``` ``` CREATE TABLE `bc_marriage_proposal_prices` ( `id` int(11) NOT NULL AUTO_INCREMENT, `title` varchar(255) DEFAULT NULL, `describe` varchar(255) DEFAULT NULL COMMENT '描述', `prices` decimal(10,2) DEFAULT NULL, `add_time` int(11) DEFAULT NULL, `status` int(2) DEFAULT NULL, `top_prices` decimal(10,2) DEFAULT NULL COMMENT '置顶金额', `sort` int(11) DEFAULT NULL, `type` int(11) DEFAULT NULL, `number` varchar(30) CHARACTER SET utf8 COLLATE utf8_general_ci DEFAULT NULL COMMENT '订单号', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=3 DEFAULT CHARSET=utf8 COMMENT='会员价格表'; ``` ``` CREATE TABLE `bc_marriage_proposal_agreements` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` int(11) DEFAULT NULL, `add_time` int(11) DEFAULT NULL, `status` int(2) DEFAULT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=5 DEFAULT CHARSET=utf8 COMMENT='设计 是否勾选同意'; ``` > 1、查询是否同意了协议 请求地址: https://你的域名/api/marriage_proposal/agreement 请求方法:get 请求数据:无 返回数据: 定义10001 为错误 200为成功 ``` { "success": true, "code": "200", "msg": "数据请求成功!", "obj": { "data": { "user_id": "申请者ID", "agreement": "1", //0为 未同意 1为同意 } } } ``` > 2、点击同意了协议 调用该接口 请求地址: https://你的域名/api/marriage_proposal/agreement_save 请求方法:get 请求数据:无 返回数据: 定义10001 为错误 200为成功 ``` { "success": true, "code": "200", "msg": "数据保存成功!", "obj": { "data": { "user_id": "申请者ID", "agreement": "1", //0为 未同意 1为同意 } } } ``` > 3、获取价格列表 请求地址: https://你的域名/api/marriage_proposal/price_data 请求方法:get 请求数据:无 返回数据: 定义10001 为错误 200为成功 ``` { "success": true, "code": "200", "msg": "数据获取成功", "list": [ { "id": 1, "title": "三个月", "describe": "购买征婚", "price": "100.00", "add_time": null, "states": 1, "top_price": "68.00", "sort": null         },     ] } ``` > 4、征婚发起接口 请求地址: https://你的域名/api/marriage_proposal/marriage_proposal/order_save 请求方法:post 请求数据: ``` shop_id=价格ID ``` 返回数据: 定义10001 为错误 200为成功 ``` { "success": true, "code": "200", "msg": "数据保存成功!", "obj": { "data": { "shop_id": "1", "number": "zh202110301054048287", "states": 0, "add_time": 1635562444, "user_id": 0, "prices": "100.00", "top_prices": "68.00"         }     } } ``` > 5、征婚置顶接口 请求地址: https://你的域名/api/marriage_proposal/marriage_proposal/top_save 请求方法:post 请求数据: ``` shop_id=价格ID mp_id=婚庆订单ID ``` 返回数据: 定义10001 为错误 200为成功 ``` { "success": true, "code": "200", "msg": "数据保存成功!", "obj": { "data": { "shop_id": "1", "number": "zh202110301054048287", "states": 0, "add_time": 1635562444, "user_id": 0, "prices": "100.00", "top_prices": "68.00"         }     } } ``` > 6、征婚下线接口 请求地址: https://你的域名/api/marriage_proposal/offline 请求方法:get 请求数据: ``` id=数据ID ``` 返回数据: 定义10001 为错误 200为成功 ``` { "success": true, "code": "200", "msg": "数据保存成功!", "obj": { "data": {         }     } } ``` >7、征婚前端调用 请求地址: https://你的域名/api/marriage_proposal/data 请求方法:get 请求数据:无 返回数据: 定义10001 为错误 200为成功 ``` { "success": true, "code": "200", "msg": "数据获取成功", "obj": [         { "id": 100074, "gender": 1, //1:男士,2:女士 "nickname": "魔掌如来", "education": 6, //学历 "district": "10.162.2030", "district_cn": "江苏.南京.栖霞区", "photo": "https://njca.stwxs.com/uploads/original/20211025/a2d53acb01e0ec79054e33060c67b2d5.png", "start_time": 1635836368         }     ] } ```