```
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
}
]
}
```
- 空白目录
- 一、上海璨耀
- MD5手机加密-前置撞库接口
- 数据传入提交接口
- 加密方法
- 客户数据表
- 二、菏泽白癜风医院项目
- 1.1数据库表
- 2 接口地址
- 2.1 患者管理
- 2.2 拿药管理
- 2.3 仪器管理
- 2.4 就诊记录 (病例)
- 2.5 管理员
- 2.6 回访记录
- 2.7 照片记录
- 2.8 杂项
- 2.9 来院记录
- 2.10 领导端
- 2.11 咨询台功能
- 2.12 药品设置
- 2.13 时长设置
- 2.14 不回访原因
- 三、环保项目
- 1.1 项目各种分类接口
- 2 项目管理
- 3 文件上传地址
- 4.用户登录
- 5 订单管理
- 6 个人中心
- 6.1 佣金记录
- 6.2 提现
- 7 其它接口
- 7.1 轮播图
- 8 人才管理
- 四、城爱婚恋自主征婚平台
- 一、CP管理
- 二、征婚
- 三、课程中心
- 四、其它接口