@lina
2021-03-20T07:27:14.000000Z
字数 32037
阅读 545
云易付
id
int(11),
name
varchar(32) '企业名称',
balance
decimal(10,2) '余额',
type
int(11) '行业类型',
address
varchar(128) '企业地址',
phone
varchar(16) '电话',
contacts
varchar(16) '联系人',
logo
varchar(255) ,
amil_addr
varchar(128) '发票邮寄地址',
website
varchar(255) '公司网址',
remark
varchar(128) '备注信息',
app_secret
varchar(32) '服务端生成唯一key',
app_id
varchar(32) ,
max_amount
decimal(10,0) '0',
status
tinyint(1) '1' '0禁用 1启用',
created_at
timestamp ,
updated_at
timestamp ,
id
int(11),
company_id
int(11) '企业id',
payment_no
varchar(32) '打款单号',
amount
decimal(10,0) '充值金额',
account_no
varchar(32) '打款账号',
pay_time
date '充值时间',
status
tinyint(1) '1' '0禁用 1启用',
created_at
timestamp ,
updated_at
timestamp ,
company_id
int(11) '企业id',
yunyifu_user_id
varchar(64) '传递给第三方的用户标识',
real_name
varchar(16) '用户真实姓名',
id_number
varchar(32) '用户真实身份证',
phone
varchar(16) '用户真实手机号',
dealer_user_id
varchar(64) '接入方的用户id',
invitation_time
timestamp NULL DEFAULT NULL '邀约时间',
sign_time
timestamp '签约时间 laravel 获取ip',
contract_url
text '合同链接',
face_url
varchar(255) '人脸认证图片',
status
tinyint(1) '1' '0禁用 1启用',
created_at
timestamp ,
updated_at
timestamp ,
company_id
int(11) '公司id',
sn
varchar(32) '订单号',
alipay_order_id
varchar(32) DEFAULT NULL '支付宝订单id',
dealer_order_id
varchar(64) '第三方order_id',
dealer_user_id
varchar(64) '收款人id',
card_no
varchar(64) '收款人账号',
pay_type
tinyint(1) '0' '提现通道 1: 支付宝',
pay_amount
decimal(10,2) '提现金额',
pay_date
timestamp NULL DEFAULT NULL '提现完成时间',
pay_fund_order_id
varchar(32) DEFAULT NULL '支付宝支付资金流水号',
pay_remark
varchar(128) '单笔转账' '提现备注',
notify_url
varchar(255) '回调地址',
alipay_response
longtext '支付宝响应参数',
job_state
tinyint(4) '0' '0未写入任务 1写入任务 2消费任务中 3消费结束',
sub_code
varchar(255) DEFAULT NULL '支付宝业务错误码',
sub_msg
varchar(255) DEFAULT NULL '支付宝业务错误码说明',
status
tinyint(1) '0' '支付进度状态( 0:待审核 , 1审核完成 , 5:待打款,6:订单挂单 ,10:打款中,15:已打款,20:打款失败)',
inform_count
tinyint(2) '0' '通知次数',
inform_status
tinyint(1) '0' '0 未通知 1 通知中 2 通知成功 3 通知失败',
error_retry_time
int(11) DEFAULT '0' '订单失败重试时间范围',
created_at
timestamp ,
updated_at
timestamp ,
请求URL
GET
/api/upload
请求参数
file
: [file] 文件
响应
{
"error_code": 0,
"data": {
"sensitive": false,
"key": "$2y$10$ZNX65xVgn1X1cLfEKBK.VuxdbbDntCrhI1HW.7W1CO2OqktO7o6vW", //验证码图片标识符
"img": "data:image/png;base64,xxx" //图片base64编码
},
"error_message": ""
}
验证码图片为一次性的,如果输入错误则作废,需要重新获取图片内容
请求URL
GET
/api/captcha/app
请求参数
响应
{
"error_code": 0,
"data": {
"sensitive": false,
"key": "$2y$10$ZNX65xVgn1X1cLfEKBK.VuxdbbDntCrhI1HW.7W1CO2OqktO7o6vW", //验证码图片标识符
"img": "data:image/png;base64,xxx" //图片base64编码
},
"error_message": ""
}
请求URL
GET
/api/companyInfo/{code}
注: code 是邀请码
请求参数
响应
{
"status": 0,
"msg": "成功",
"data": {
"id": 1,
"name": "青羚基金会",
"balance": "150.70",
"type": "1",
"address": "北京昌平",
"phone": "16621089913",
"email": "16621089913@qq.com",
"contacts": "武帅冲",
"logo": "https://test.console.yun1fu.com//uploads/2020-12//870341609233763.png",
"amil_addr": "北京",
"website": "http://www.baidu.com",
"remark": "测试",
"app_secret": "4fa05b66095d605e10ca7690139d7cd7",
"app_id": "123123123",
"max_amount": "30",
"status": 0,
"sign_time": "2020-12-19 00:00:00",
"account_number": "773***@qq.com",
"account_name": "**涛",
"code": "1234567",
"created_at": "2020-12-17 17:37:06",
"updated_at": "2020-12-29 18:35:57"
}
}
请求URL
post
api/sendSms
请求参数
key
: [string] 图形验证码keycaptcha_code
: [string] 图形验证码phone
: [string] 手机号type
: [int] 3 (传3)
响应
{
"status": 0,
"msg": "发送手机验证码成功",
"data": null
}
请求URL
post
api/activate
请求参数
verify_code
: [int] 手机验证码phone
: [string] 手机号password
: [string] 密码password_confirmation
: [string] 确认密码
响应
{
"status": 0,
"msg": "激活成功",
"data": null
}
验证码图片为一次性的,如果输入错误则作废,需要重新获取图片内容
请求URL
GET
/api/captcha/app
请求参数
响应
{
"error_code": 0,
"data": {
"sensitive": false,
"key": "$2y$10$ZNX65xVgn1X1cLfEKBK.VuxdbbDntCrhI1HW.7W1CO2OqktO7o6vW", //验证码图片标识符
"img": "data:image/png;base64,xxx" //图片base64编码
},
"error_message": ""
}
请求URL
post
api/sendSms
请求参数
key
: [string] 图形验证码keycaptcha_code
: [string] 图形验证码phone
: [string] 手机号type
: [int] 4 (传4)
响应
{
"status": 0,
"msg": "发送手机验证码成功",
"data": null
}
请求URL
post
api/forgetPassword
请求参数
verify_code
: [int] 手机验证码phone
: [string] 手机号password
: [string] 密码password_confirmation
: [string] 确认密码
响应
{
"status": 0,
"msg": "密码重置成功",
"data": null
}
请求URL
post
api/sendSms
请求参数
type
: [int] 5 (传5)
响应
{
"status": 0,
"msg": "发送手机验证码成功",
"data": null
}
请求URL
post
api/updatePassword
请求参数
verify_code
: [int] 手机验证码password
: [string] 密码password_confirmation
: [string] 确认密码
响应
{
"status": 0,
"msg": "密码修改成功",
"data": null
}
验证码图片为一次性的,如果输入错误则作废,需要重新获取图片内容
请求URL
GET
/api/captcha/app
请求参数
响应
{
"error_code": 0,
"data": {
"sensitive": false,
"key": "$2y$10$ZNX65xVgn1X1cLfEKBK.VuxdbbDntCrhI1HW.7W1CO2OqktO7o6vW", //验证码图片标识符
"img": "data:image/png;base64,xxx" //图片base64编码
},
"error_message": ""
}
请求URL
post
api/sendSms
请求参数
key
: [string] 图形验证码keycaptcha_code
: [string] 图形验证码phone
: [string] 手机号
响应
{
"status": 0,
"msg": "发送手机验证码成功",
"data": null
}
请求URL
post
api/login
请求参数
phone
: [string] 手机号verify_code
: [string] 验证码password
: [string] 密码
响应
{
"status": 0,
"msg": "登录成功",
"data": {
"id": 1,
"username": "admin",
"avatar": "/user.jpeg",
"type": 1,
"name": "admin",
"email": "1091345598@qq.com",
"phone": "16621089913",
"relation_id": 0,
"status": 1,
"created_at": "2020-12-15 17:42:17",
"updated_at": "2020-12-23 17:09:53"
}
}
请求URL
get
api/currentUser
响应
{
"status": 0,
"msg": "登录成功",
"data": {
"id": 1,
"username": "admin",
"avatar": "/user.jpeg",
"type": 1,
"name": "admin",
"email": "1091345598@qq.com",
"phone": "16621089913",
"relation_id": 0,
"status": 1,
"created_at": "2020-12-15 17:42:17",
"updated_at": "2021-03-03 20:50:21",
"menu": {"activity":1},
"permission": [
"GET:/user",
"测试权限1",
"测试权限2",
"测试权限5"
]
}
}
请求URL
post
api/home
请求参数
start_date
: [string] 开始时间end_date
: [string] 修改时间
响应
{
"status": 0,
"msg": "成功",
"data": {
"balance" : 8134.00 // 余额,
"order_info" : {
"sh_wait" : { // 待审核-大单
count : 3, // 笔数
amount : 5461.66 // 金额
},
"sh_success" : { // 审核通过-大单
count : 3, // 笔数
amount : 5461.66 // 金额
},
"remit_wait" : {// 待打款
count : 3, // 笔数
amount : 5461.66 // 金额
},
"gd" : {// 挂单
count : 3, // 笔数
amount : 5461.66 // 金额
},
"remit_process" : {// 打款中
count : 3, // 笔数
amount : 5461.66 // 金额
},
"remit_success" : {// 已打款
count : 3, // 笔数
amount : 5461.66 // 金额
},
"remit_fail" : {// 打款失败
count : 3, // 笔数
amount : 5461.66 // 金额
},
}
}
}
请求URL
get
api/home
请求参数
start_date
: [string] 开始时间end_date
: [string] 修改时间
响应
{
"status": 0,
"msg": "成功",
"data": {
"company_count" : 56 // 总企业数,
"user_count" : 8134 // 总用户数,
"order_info" : {
"sh_wait" : { // 待审核-大单
count : 3, // 笔数
amount : 5461.66 // 金额
},
"sh_success" : { // 审核通过-大单
count : 3, // 笔数
amount : 5461.66 // 金额
},
"remit_wait" : {// 待打款
count : 3, // 笔数
amount : 5461.66 // 金额
},
"gd" : {// 挂单
count : 3, // 笔数
amount : 5461.66 // 金额
},
"remit_process" : {// 打款中
count : 3, // 笔数
amount : 5461.66 // 金额
},
"remit_success" : {// 已打款
count : 3, // 笔数
amount : 5461.66 // 金额
},
"remit_fail" : {// 打款失败
count : 3, // 笔数
amount : 5461.66 // 金额
},
}
}
}
请求URL
get
api/order
请求参数
start_date
: [string] 开始时间end_date
: [string] 修改时间status
: [int] 交易状态company_id
: [int] 签约企业id (admin 可以传)keyword
: [string] 姓名/手机号/身份证/收款账户
响应
{
"status": 0,
"msg": "成功",
"data" : {
"total" : 10,
"list": [
{
"created_at" : "2020-10-1 12:21:21" ,// 申请时间
"real_name" : "小明" ,// 收款人
"card_no" : "123" ,// 收款人账号
"pay_amount" : "10.01" ,// 打款金额
"company" : {
"name" : "csvn" // 签约企业
}
"status" : 1 ,// 处理状态 (order表)
"inform_status" : 0 ,// 通知状态 (order表)
}
]
}
}
请求URL
get
api/order/export
请求参数
date
: [string] 导出月份 (例: 2020-12name
: [string] 导出文件名称前缀
响应
请求URL
post
api/recharge/import
请求参数
file
: [file] 导入文件
响应
{
"status": 0,
"msg": "",
"data": [
{
"payment_no": "2020122120004001110020006972715631",
"amount": "20.00",
"account_no": "ceshiyuming",
"company_name": "测试域名添加",
"error_info": "-",
"actual_amount": 20, // 实冲金额
"commission_charge": "0.00", // 服务费
"commission_charge_rate": 3 // 服务费点数
},
]
}
请求URL
post
api/recharge/import_sendSms
请求参数
type
: [int] 1 传1
响应
{
"status": 0,
"msg": "发送手机验证码成功",
"data": null
}
请求URL
post
api/recharge/import_add
请求参数
url
: [file] 文件链接verify_code
: [file] 手机号验证码
响应
{
"status": 0,
"msg": "导入充值记录成功",
"data": null
}
请求URL
get
api/recharge
请求参数
start_date
: [string] 开始时间end_date
: [string] 修改时间company_id
: [int] 签约企业idopen_invoice_status
: [int] 是否开票 0未开 1已开
响应
{
"status": 0,
"msg": "成功",
"data" : {
"total" : 10,
"list": [
{
"created_at" : "2020-10-1 12:21:21" ,// 创建时间
"payment_no" : "234234" ,// 打款单号
"account_no" : "123" ,// 打款账号
"amount" : "10.01" ,// 打款金额
"pay_time" : "2020-10-1 12:21:21" // 充值时间
"company" : {
"name" : "csvn" // 签约企业
}
}
]
}
}
请求URL
get
api/recharge
请求参数
start_date
: [string] 开始时间end_date
: [string] 修改时间open_invoice_status
: [int] 是否开票 0未开 1已开
响应
{
"status": 0,
"msg": "成功",
"data" : {
"total" : 10,
"balance": 8134.00,// 余额
"list": [
{
"created_at" : "2020-10-1 12:21:21" ,// 创建时间
"payment_no" : "234234" ,// 打款单号
"account_no" : "123" ,// 打款账号
"amount" : "10.01" ,// 打款金额
"pay_time" : "2020-10-1 12:21:21" // 充值时间
}
]
}
}
请求URL
get
api/user
请求参数
company_id
: [int] 签约企业id (admin 可以传)sign_time
: [string] 签约时间keyword
: [string] 姓名/手机号/身份证
响应
{
"status": 0,
"msg": "成功",
"data" : {
"total" : 10,
"list": [
{
"created_at" : "2020-10-1 12:21:21" ,// 创建时间
"real_name" : "234234" ,// 真实姓名
"id_number" : "123" ,// 身份证号
"phone" : "10.01" ,// 手机号
"sign_time" : "2020-10-1 12:21:21", // 签约时间
"company" : {
"name" : "csvn" // 签约企业
},
"contract_url" : "...", // 合同链接
"face_url" : "..." // 人脸链接
}
]
}
}
请求URL
post
api/user/import
请求参数
url
: [int] 文件相对路径
响应
{
"status": 0,
"msg": "",
"data": {
"list": [
{
"real_name": "檀健次",
"id_number": "110101199003079294",
"phone": "16621089913",
"error_msg": "重复导入同一身份证"
},
],
"success_count": 0,
"total": 1
}
}
请求URL
get
api/company
请求参数
start_date
: [string] 开始时间end_date
: [string] 修改时间
响应
{
"status": 0,
"msg": "成功",
"data" : {
"total" : 10,
"list": [
{
"name" : "123" ,// 企业名称
"address" : "234234" ,// 地址
"contacts" : "123" ,// 联系人
"sign_time" : "2020-10-1 12:21:21", // 签约时间
}
]
}
}
请求URL
get
api/company/selector
响应
{
"status": 0,
"msg": "",
"data": [
{
"id": 8,
"name": "20201229测试2"
}
]
}
请求URL
post
api/company
请求参数
name
: [string] 名称type
: [string] 行业类型address
: [string] 公司地址phone
: [string] 手机号contacts
: [string] 联系人logo
: [string] logoamil_addr
: [string] 邮寄地址website
: [string] 网址remark
: [string] 备注max_amount
: [string] 最大金额sign_time
: [string] 签约时间account_number
: [string] 打款账号account_name
: [string] 打款账户名称domain_name
: [string] 定制的域名
响应
{
"status": 0,
"msg": "成功",
"data" : null
}
请求URL
get
api/company/{id}
注: id 是公司的id
响应
{
"status": 0,
"msg": "",
"data": {
"id": 1,
"name": "测试公司",
"balance": "100.40",
"type": 1,
"address": "北京昌平",
"phone": "16621089913",
"email": "16621089913@qq.com",
"contacts": "武帅冲",
"logo": "https://admin.tsingling.guangying.link/logo.svg",
"amil_addr": "北京",
"website": "http://www.baidu.com",
"remark": "测试",
"app_secret": "1234567891",
"app_id": "123123123",
"max_amount": "30",
"status": 1,
"sign_time": null,
"account_number": "773***@qq.com",
"account_name": "**涛",
"created_at": "2020-12-17 17:37:06",
"updated_at": "2020-12-25 14:07:27"
}
}
请求URL
put
api/company/{id}
注: id 是公司的id
请求参数
name
: [string] 名称type
: [string] 行业类型address
: [string] 公司地址phone
: [string] 手机号contacts
: [string] 联系人logo
: [string] logoamil_addr
: [string] 邮寄地址website
: [string] 网址remark
: [string] 备注max_amount
: [string] 最大金额sign_time
: [string] 签约时间account_number
: [string] 打款账号account_name
: [string] 打款账户名称domain_name
: [string] 定制的域名commission_charge_rate
: [string] 服务费率
响应
{
"status": 0,
"msg": "成功",
"data" : null
}
请求URL
post
api/company/updateSecret_sendSms
请求参数
type
: [int] 2 传2
响应
{
"status": 0,
"msg": "发送手机验证码成功",
"data": null
}
请求URL
put
api/company/{id}/updateSecret
注: id 是公司的id
请求参数
verify_code
: [int] 手机验证码
响应
{
"status": 0,
"msg": "更新Secret成功",
"data": {
"app_secret": "4fa05b66095d605e10ca7690139d7cd7"
}
}
请求URL
put
api/contract
请求参数
company_id
: [int] 公司idcontract_name
: [int] 合同名称contract_url
: [int] 合同路径 (相对路径)
响应
{
"status": 0,
"msg": "上传合同成功",
"data": null
}
请求URL
post
api/activity
请求参数
title
: [int] 标题desc
: [int] 任务描述end_time
: [int] 报名截止时间 (例2020-01-01 12:12:12)amount
: [int] 预计报酬
响应
{
"status": 0,
"msg": "创建活动成功",
"data": null
}
请求URL
put
api/activity/{id}
注:id 是活动id
请求参数
title
: [int] 标题desc
: [int] 任务描述end_time
: [int] 报名截止时间 (例2020-01-01 12:12:12)amount
: [int] 预计报酬
响应
{
"status": 0,
"msg": "修改活动成功",
"data": null
}
请求URL
get
api/activity/{id}
注:id 是活动id
请求参数
page
: [int] 页码pageSize
: [int] 每页条数company_id
: [int] 公司idtitle
: [int] 活动标题
响应
{
"status": 0,
"msg": "",
"data": {
"list": [
{
"id": 4,
"title": "嘿嘿嘿", //标题
"company_id": 0,
"desc": "嘿嘿嘿", // 说明
"end_time": "2020-01-01",// 截止时间
"amount": "12.12", // 预计金额
"status": 0,
"reason": null,
"created_at": "2021-01-24 03:56:26",
"updated_at": "2021-01-24 11:57:08",
"user_activity_count": 0,// 报名人数
"company": {
"id": 5,
"name": "成都志嘉励合科技有限公司"// 公司名称
}
}
],
"total": 4
}
}
请求URL
get
api/activity/selector
请求参数
company_id
: [int] admin请求时传递
响应
{
"status": 0,
"msg": "",
"data": [
{
"id": 2,
"title": "哈哈哈"
},
{
"id": 5,
"title": "嘿嘿嘿2"
},
{
"id": 7,
"title": "测试2"
},
{
"id": 9,
"title": "测试4"
}
]
}
请求URL
get
api/activity/{id}
注:id 是活动id
响应
{
"status": 0,
"msg": "",
"data": {
"id": 2,
"title": "哈哈哈",
"company_id": 5,
"desc": "哈哈哈",
"end_time": "2021-01-28 00:00:00",
"amount": "12.00",
"status": 1,
"reason": null,
"created_at": "2021-01-22 18:36:37",
"updated_at": "2021-01-23 18:25:49"
}
}
请求URL
POST
api/activity/changeStatus
请求参数
activity_ids
: [string] 活动id (例2,3,4)status
: [int] 1通过 2审核不通过reason
: [string] 原因
响应
{
"status": 0,
"msg": "成功",
"data": null
}
请求URL
get
api/activityUser
请求参数
activity_id
: [int] 活动idreal_name
: [string] 姓名
响应
{
"status": 0,
"msg": "",
"data": {
"list": [
{
"id": 14,
"user_id": 44,
"activity_id": 14,
"status": 0,
"created_at": "2021-01-29 13:13:38",
"updated_at": "2021-01-29 13:13:38",
"user": {
"id": 44,
"yunyifu_user_id": "yyf202101291247375843",
"real_name": "罗奕淦",
"id_number": "350481198910305011",
"phone": "17710210877",
"status": 0,
"gender": 1,
"face_url": "https://api.yunyifu.guangying.link/upload/2021-01-29/16118968622807.jpg",
"fdd_head_photo": "https://api.yunyifu.guangying.link/upload/2021-01-29/16118968629027.jpg",
"fdd_back_photo": "https://api.yunyifu.guangying.link/upload/2021-01-29/16118968628586.jpg",
"id_number_start_time": "2017-01-24",
"id_number_end_time": "2037-01-24",
"bank_number": "6214831214826791",
"open_id": "ouzYh5ZRYvfTuK7TlFZeg23cVN9A",
"token": "e0bdf640b49c3c254067ae4d334ebb0a",
"expires_in": 1611983615,
"real_name_status": 1,
"created_at": "2021-01-29 12:47:38",
"updated_at": "2021-01-29 14:19:27"
}
},
],
"total": 1
}
}
请求URL
get
api/employmentStatus
请求参数
activity_id
: [int] 活动idstatus
: [int] 1录用 2不录用user_id
: [int] 用户id
响应
{
"status": 0,
"msg": "成功",
"data": null
}
请求URL
post
api/payment/import
请求参数
url
: [sting] 相对路径activity_id
: [int] 活动id
响应
{
"status": 0,
"msg": "",
"data": {
"list": [
{
"activity_id": "2",
"real_name": "武帅冲",
"phone": 16621089913,
"id_number": "372922199611169010",
"bank_number": "6215340300001116368",
"amount": "100000000",
"payment_sn": "35222921012611555527793",
"status": 0,
"reason": "未签约",
"group_id": 3
}
],
"total": 1
}
}
请求URL
post
api/payment
请求参数
group_id
: [int] 打款申请组idamount
: [int] 打款金额id_number
: [string] 身份证号real_name
: [string] 姓名phone
: [string] 手机号bank_number
: [string] 银行卡号
响应
{
"status": 0,
"msg": "",
"data": {
"amount": "1.3", // 金额
"id_number": "372922199611169010", //身份证号
"real_name": "武", // 姓名
"phone": "16621089913", // 手机号
"bank_number": "12345678", // 身份证号
"company_id": 9,
"group_id": "3",
"activity_id": 0,
"payment_sn": "32794521012704375922238", // 临时订单号
"status": 0,
"reason": "未签约", // (正确/错误) 信息
"updated_at": "2021-01-27 04:38:00",
"created_at": "2021-01-27 04:38:00",
"id": 5
}
}
请求URL
put
api/payment
请求参数
group_id
: [int] 打款申请组idpayment_sn
: [string] 临时订单号amount
: [int] 金额id_number
: [string] 身份证号
响应
{
"status": 0,
"msg": "",
"data": {
"id": 5,
"group_id": 3,
"order_id": null,
"company_id": 9,
"user_id": null,
"payment_sn": "32794521012704375922238",
"activity_id": 0,
"real_name": "武",
"payment_number": null,
"phone": "16621089913",
"id_number": "372922199611169010",
"bank_number": "12345678",
"amount": "0",
"pay_status": 0,
"type": 0,
"reason": "打款金额小于等于0",
"status": 0,
"created_at": "2021-01-27 04:38:00",
"updated_at": "2021-01-27 04:42:00"
}
}
请求URL
delete
api/payment/{payment_sn}
注: payment_sn 临时订单号
响应
{
"status": 0,
"msg": "删除成功",
"data": null
}
请求URL
delete
api/paymentConfirm/{group_id}
注: group_id 打款组id
响应
{
"status": 0,
"msg": "成功",
"data": null
}
请求URL
get
api/paymentGroup
请求参数
company_id
: [int] 公司id (admin传)
响应
{
"status": 0,
"msg": "",
"data": {
"list": [
{
"id": 3,
"company_id": 9,
"activity_id": 0,
"status": 1, // 状态 0-临时状态 1-待打款 5-打款成功 10-驳回
"amount": "0.00", // 总金额
"people_total": 0, // 人数
"created_at": "2021-01-26 11:55:55",
"updated_at": "2021-01-27 15:05:15",
"activity": {
"id": 2,
"title": "哈哈哈"
},
"company": {
"id": 2,
"name": "哈哈哈"
}
}
],
"total": 1
}
}
请求URL
get
api/paymentGroup/{id}
注: 打款申请组id
响应
{
"status": 0,
"msg": "",
"data": {
"id": 3,
"company_id": 9,
"activity_id": 2,
"status": 1, // 状态 0-临时状态 1-待审核 5-审核通过 10-驳回
"amount": "0.00", // 总金额
"people_total": 0, // 人数
"created_at": "2021-01-26 11:55:55",
"updated_at": "2021-01-27 15:59:24",
"payment": [
{
"id": 1,
"group_id": 3,
"order_id": null,
"company_id": 9,
"user_id": 0,
"payment_sn": "35222921012611555527793",
"activity_id": 2,
"real_name": "武帅冲", // 姓名
"payment_number": null,
"phone": "16621089913",
"id_number": "372922199611169010", // 身份证号
"bank_number": "6215340300001116368",// 银行卡号
"amount": "100000000.00", // 金额
"pay_status": 0, // 0未提交 1-已提交,未打款 5打款中 10 打款成功 15打款失败
"type": 0,
"reason": "未签约",
"status": 0,
"created_at": "2021-01-26 19:55:55",
"updated_at": "2021-01-26 21:08:10"
}
]
}
}
请求URL
post
api/paymentReject/{group_id}
注: 打款申请组id
响应
{
"status": 0,
"msg": "驳回成功",
"data": null
}
请求URL
post
api/payment/adminImport
请求参数
url
: [sting] 相对路径group_id
: [int] 申请组id
响应
{
"status": 0,
"msg": "",
"data": {
"success_list": [],
"error_list": [
{
"0": "1",
"1": "2021010100018754302",
"2": "13-152401040002236",
"3": "木易(福建)网络科技有限公司",
"4": "6222080805000645910",
"5": "杨静涛",
"6": 1000,
"7": "它行",
"8": "中国工商银行白城洮北支行/",
"9": "交易成功",
"10": "法人还款",
"11": "",
"error_info": "收款账号不存在"
}
]
}
}
请求URL
post
api/payment/confirmImport
请求参数
url
: [sting] 相对路径group_id
: [int] 申请组idpassword
: [string] 密码
响应
{
"status": 0,
"msg": "导入成功",
"data": null
}
请求URL
get
api/payment/export
请求参数
group_id
: [int] 申请组id
请求URL
get
api/role
请求参数
platform_id
: [sting] 平台id
响应
{
"status": 0,
"msg": "",
"data": {
"platform": [
{
"id": 3,
"name": "税务",
"guard_name": "web",
"type": 5,
"platform_id": 1,
"pid": 2,
"created_at": "2021-03-03 17:23:57",
"updated_at": "2021-03-03 17:23:59",
"users_count": 0,
"permissions": [
{
"remark": "活动列表",
"pivot": {
"role_id": 3,
"permission_id": 2
}
},
{
"remark": "活动详情",
"pivot": {
"role_id": 3,
"permission_id": 5
}
}
]
}
]
}
}
请求URL
get
api/role/selector
响应
{
"status": 0,
"msg": "",
"data": [
{
"id": 3,
"name": "税务",
"guard_name": "web",
"type": 5,
"platform_id": 1,
"pid": 2,
"created_at": "2021-03-03 17:23:57",
"updated_at": "2021-03-03 17:23:59",
"users_count": 0,
}
]
}
请求URL
get
api/permission
请求参数
role_id
: [sting] 角色id
响应
{
"status": 0,
"msg": "",
"data": [
{
"id": 2,
"remark": "首页",
"path": "home",
"pid": 1,
"type": 1,
"created_at": "2021-03-03 20:49:05",
"updated_at": "2021-03-04 11:57:47",
"permissions": [
{
"id": 1,
"name": "GET:/home",
"guard_name": "web",
"menu_id": [
"2",
"15",
"16"
],
"brother_id": "0",
"remark": "首页数据展示",
"created_at": "2021-03-03 07:03:55",
"updated_at": "2021-03-03 07:03:55",
"is_default": 0
}
]
}
]
}
请求URL
post
/role/{id}/assignPermissions
注: id是角色id
请求参数
role_id
: [sting] 角色idpermission_ids
: [sting] 权限id (以逗号分隔)menu_ids
: [sting] 菜单id (以逗号分隔)
响应
{
"status": 0,
"msg": "",
"data": null
}
请求URL
get
api/adminUser
响应
{
"status": 0,
"msg": "",
"data": {
"list": [
{
"id": 21,
"username": null,
"avatar": "/user.jpeg",
"type": 5,
"name": "武冲",
"email": null,
"phone": "16621089996",
"relation_id": 1,
"status": 1,
"login_time": "2021-03-05 16:19:40",
"created_at": "2021-03-05 16:19:40",
"updated_at": "2021-03-05 16:35:32",
"roles": [
{
"name": "税务",
"pivot": {
"model_id": 21,
"role_id": 3,
"model_type": "App\\User"
}
}
]
}
],
"total": 3
}
}
请求URL
get
api/adminUser/{id}
响应
{
"status": 0,
"msg": "",
"data": {
"id": 16,
"username": null,
"avatar": "111",
"type": 1,
"name": "测试域名添加",
"email": "16621089913@163.com",
"phone": "16621089912",
"relation_id": 1,
"status": 1,
"login_time": "2021-03-05 15:44:08",
"created_at": "2021-02-26 17:27:34",
"updated_at": "2021-03-05 15:42:20",
"roles": [
{
"id": 2,
"name": "平台管理员",
"guard_name": "web",
"type": 5,
"platform_id": 1,
"created_at": "2021-03-03 07:24:25",
"updated_at": "2021-03-03 07:24:25",
"pivot": {
"model_id": 16,
"role_id": 2,
"model_type": "App\\User"
}
}
]
}
}
请求URL
post
api/adminUser
请求参数
phone
: [sting] 登录手机号password
: [sting] 登录密码name
: [sting] 显示名称role_ids
: [sting] 角色ID 以逗号分隔 (可选)
响应
{
"msg": "",
"status": 0,
"data": null
}
请求URL
put
api/adminUser/{id}
请求参数
phone
: [sting] 登录手机号password
: [sting] 登录密码name
: [sting] 显示名称role_ids
: [sting] 角色ID 以逗号分隔 (可选)
响应
{
"msg": "",
"status": 0,
"data": null
}
请求URL
get
api/adminUser
请求参数
status
: [sting] 0禁用 1启用ids
: [sting] 账号ID 以逗号分隔
响应
{
"msg": "",
"status": 0,
"data": null
}
请求URL
get
api/taxDescription
响应
{
"status": 0,
"msg": "",
"data": {
"list": [
{
"id": 1,
"description": "直播",
"rate": 6,
"platform_id": 1,
"created_at": "2021-03-05 18:27:24",
"updated_at": "2021-03-05 18:27:24",
"company": []
}
],
"total": 1
}
}
请求URL
get
api/taxDescription/{id}
响应
{
"status": 0,
"msg": "",
"data": {
"id": 1,
"description": "直播",
"rate": 6,
"platform_id": 2,
"created_at": "2021-03-05 18:27:24",
"updated_at": "2021-03-05 18:28:17",
"company": []
}
}
请求URL
post
api/taxDescription
请求参数
description
: [sting] 发票信息rate
: [sting] 税点
响应
{
"status": 0,
"msg": "添加成功",
"data": null
}
请求URL
PUT
api/taxDescription/{id}
请求参数
description
: [sting] 发票信息rate
: [sting] 税点
响应
{
"status": 0,
"msg": "修改成功",
"data": null
}
请求URL
DELETE
api/taxDescription/{id}
响应
{
"status": 0,
"msg": "删除成功",
"data": null
}
请求URL
get
api/companyInvoice
请求参数
company_id
: [int] 公司ID
响应
{
"status": 0,
"msg": "",
"data": {
"id": 1,
"company_id": 15,
"invoice_title": "(测试)光盈创新1",
"taxpayer_ldentification_number": "123456789tttt1",
"bank_name": "北京银行",
"bank_account": "123456789tttt1",
"telephone": "16621089916",
"business_address": "测试地址",
"created_at": "2021-03-02 16:08:56",
"updated_at": "2021-03-08 18:49:44"
}
}
请求URL
put
api/companyInvoice
请求参数
invoice_title
: [string] 发票抬头taxpayer_ldentification_number
: [string] 税务登记证号bank_name
: [string] 开户银行名称bank_account
: [string] 基本开户账号telephone
: [int] 注册固定电话business_address
: [string] 注册地址company_id
: [int] 公司id
响应
{
"status": 0,
"msg": "保存发票信息成功",
"data": null
}
请求URL
get
api/companyTaxDescription
请求参数
company_id
: [int] 企业id
响应
{
"status": 0,
"msg": "",
"data": {
"list": [
{
"id": 9,
"description": "1234",
"rate": 7,
"platform_id": 1,
"created_at": "2021-03-08 22:21:00",
"updated_at": "2021-03-08 22:21:00",
"company": [
{
"id": 15,
"pivot": {
"tax_description_id": 9,
"company_id": 15
}
}
]
}
],
"total": 1
}
}
请求URL
get
api/selector/taxDescription
响应
{
"status": 0,
"msg": "",
"data": [
{
"id": 9,
"description": "1234",
"rate": 7,
"platform_id": 1,
"created_at": "2021-03-08 22:21:00",
"updated_at": "2021-03-08 22:21:00",
"pivot": {
"company_id": 15,
"tax_description_id": 9
}
}
]
}
请求URL
post
api/companyTaxDescription
请求参数
taxDescription_ids
: [string] 开票信息id (以逗号分隔)company_id
: [int] 企业id
响应
{
"status": 0,
"msg": "成功",
"data": null
}
请求URL
get
api/companyAddress
响应
{
"status": 0,
"msg": "",
"data": {
"list": [
{
"id": 2,
"company_id": 15,
"mailing_address": "北京",
"recipients": "大哥",
"contact_number": "16621089913",
"is_default": 0,
"sort": 0,
"platform_id": 1,
"created_at": "2021-03-08 21:28:49",
"updated_at": "2021-03-08 21:47:28"
}
],
"total": 1
}
}
请求URL
post
api/companyAddress
请求参数
company_id
: [int] 公司idmailing_address
: [sting] 邮寄地址recipients
: [sting] 收件人contact_number
: [sting] 联系电话is_default
: [int] 是否默认地址 0不是 1是
响应
{
"status": 0,
"msg": "保存公司地址成功",
"data": null
}
请求URL
PUT
api/companyAddress/{id}
注:id :地址id
请求参数
mailing_address
: [sting] 邮寄地址recipients
: [sting] 收件人contact_number
: [sting] 联系电话is_default
: [int] 是否默认地址 0不是 1是
响应
{
"status": 0,
"msg": "保存公司地址成功",
"data": null
}
请求URL
DELETE
api/companyAddress/{id}
响应
{
"status": 0,
"msg": "删除成功",
"data": null
}
请求URL
get
api/companyAddress/{id}
响应
{
"status": 0,
"msg": "",
"data": {
"id": 2,
"company_id": 15,
"mailing_address": "北京",
"recipients": "大哥",
"contact_number": "16621089913",
"is_default": 0,
"sort": 0,
"platform_id": 1,
"created_at": "2021-03-08 21:28:49",
"updated_at": "2021-03-08 21:47:28"
}
}
请求URL
get
api/companyAddressDefault
响应
{
"status": 0,
"msg": "",
"data": {
"id": 4,
"company_id": 15,
"mailing_address": "北京",
"recipients": "大哥",
"contact_number": "16621089913",
"is_default": 1,
"sort": 0,
"platform_id": 1,
"created_at": "2021-03-08 22:13:20",
"updated_at": "2021-03-08 22:17:31"
}
}
请求URL
get
api/selector/companyAddress
响应
{
"status": 0,
"msg": "",
"data": [
{
"id": 4,
"company_id": 15,
"mailing_address": "北京13123",
"recipients": "大哥",
"contact_number": "16621089913",
"is_default": 1,
"sort": 0,
"platform_id": 1,
"created_at": "2021-03-08 22:13:20",
"updated_at": "2021-03-11 11:57:32"
},
]
}
请求URL
get
api/invoice
请求参数
start_date
: [sting] 申请开始时间end_date
: [sting] 申请结束时间platform_id
: [int] 平台id (可选)company_id
: [int] 企业id (可选)
响应
{
"status": 0,
"msg": "",
"data": {
"list": [
{
"id": 1,
"company_id": 15,
"platform_id": 1,
"invoice_track_no": "123456789",
"invoice_track_phone": "16621089913",
"status": 10, // 开票状态 0未开票 5已开票 10驳回审核
"unit": "套",
"rate": 7,
"description": "1234",
"model": null,
"number": "1.00",
"amount": "60.00",
"apply_time": "2021-03-09 15:32:47",
"invoice_title": "(测试)光盈创新1",
"title_type": 1,
"invoice_type": 1,
"taxpayer_ldentification_number": "123456789tttt1",
"bank_name": "北京银行",
"bank_account": "123456789tttt1",
"telephone": "16621089916",
"business_address": "测试地址",
"invoice_nature": 1,
"mailing_address": "北京",
"recipients": "大哥",
"contact_number": "16621089913",
"remark": null,
"reason": "123456789",
"value_added_tax": null,
"local_tax": null,
"created_at": "2021-03-09 15:32:47",
"updated_at": "2021-03-09 16:56:27",
"company": {
"id": 15,
"name": "测试域名添加",
"balance": "0.00",
"type": "111",
"address": "111",
"phone": "16621089912",
"email": "16621089913@163.com",
"contacts": "111",
"logo": "111",
"amil_addr": "111",
"website": "111",
"remark": "111",
"app_secret": "d44dbd217457fedbb12e5b742d986ac7",
"app_id": "202102261530058",
"max_amount": "111",
"status": 1,
"sign_time": "2020-12-02 00:00:00",
"account_number": "111",
"account_name": "111",
"code": "e88ae08b07ca6d26b38616af1d84e9a5",
"domain_name": "asdf",
"invoice_money": "40.00",
"commission_charge_rate": 3,
"platform_id": 1,
"created_at": "2021-02-26 17:27:34",
"updated_at": "2021-03-10 14:12:00"
}
},
],
"total": 2,
"invoiceMoney" : 0 // 可开票金额
}
}
请求URL
get
api/invoice/{id}
响应
{
"status": 0,
"msg": "",
"data": {
"id": 2,
"company_id": 15,
"platform_id": 1,
"invoice_track_no": "123456789",
"invoice_track_phone": "16621089913",
"status": 5,
"unit": "套",
"rate": 7,
"description": "1234",
"model": null,
"number": "1.00",
"amount": "60.00",
"apply_time": "2021-03-10 14:11:59",
"invoice_title": "(测试)光盈创新122",
"title_type": 1,
"invoice_type": 1,
"taxpayer_ldentification_number": "123456789tttt1",
"bank_name": "北京银行",
"bank_account": "123456789tttt1",
"telephone": "16621089916",
"business_address": "测试地址",
"invoice_nature": 1,
"mailing_address": "北京",
"recipients": "大哥",
"contact_number": "16621089913",
"remark": null,
"reason": "",
"value_added_tax": "0.00",
"local_tax": "0.00",
"created_at": "2021-03-10 14:12:00",
"updated_at": "2021-03-10 14:17:50",
"company_recharges": [
{
"id": 20,
"company_id": 15,
"platform_id": 1,
"payment_no": "202012212000400111002000697271563",
"amount": "20.00",
"account_no": "test_acount_number",
"pay_time": "2020-12-21",
"status": 1,
"commission_charge": "0.00",
"commission_charge_rate": "0.00",
"actual_amount": "0.00",
"open_invoice_status": 1,
"invoice_id": 2,
"created_at": "2021-01-30 15:04:47",
"updated_at": "2021-03-10 14:12:00"
},
],
"invoice_images": [
{
"id": 2,
"invoice_id": 2,
"company_id": 15,
"url": "123",
"created_at": "2021-03-10 14:17:18",
"updated_at": "2021-03-10 14:17:18"
}
],
"invoice_track": {
"showapi_res_error": "",
"showapi_res_id": "604868d78d57bad91f83ade0",
"showapi_res_code": 0,
"showapi_res_body": {
"queryTimes": 1,
"upgrade_info": "",
"fee_num": 0,
"status": 7,
"expSpellName": "",
"msg": "nu格式不正确",
"updateStr": "2020-01-01 00:00:00",
"possibleExpList": [],
"flag": false,
"tel": "",
"ret_code": 2,
"logo": "",
"expTextName": "",
"data": [],
"mailNo": "",
"dataSize": 0,
"update": 1577808000000
}
}
}
}
请求URL
post
api/invoice
请求参数
company_address_id
: [int] 公司地址idcompany_invoice_id
: [int] 公司发票信息idtax_description_id
: [int] 开票信息idcompany_recharge_ids
: [string] 充值流水id (以逗号分隔)amount
: [sting] 开票金额remark
: [sting] 备注invoice_nature
: [int] 发票性质 1 电子,5纸质title_type
: [int] 开具类型 1 公司invoice_type
: [int] 发票类型 1 增值税发票
响应
{
"status": 0,
"msg": "成功",
"data": null
}
请求URL
post
api/invoice/{id}/image
注: id = 发票的id
请求参数
urls
: [array] 图片url
响应
{
"status": 0,
"msg": "成功",
"data": null
}
请求URL
post
api/invoice/{id}/track
注: id = 发票的id
请求参数
invoice_track_no
: [string] 物流单号array] 图片urlinvoice_track_phone
: [array] 物流上的手机号
响应
{
"status": 0,
"msg": "成功",
"data": null
}
请求URL
post
api/invoice/{id}/reject
注: id = 发票的id
请求参数
reason
: [string] 原因图片url
响应
{
"status": 0,
"msg": "成功",
"data": null
}
请求URL
get
api/individualIncomeTaxPaySlip/company
请求参数
tax_month
: [string] 缴纳月份(可选)company_id
: [int] 公司标识 (可选)
响应
{
"status": 0,
"msg": "",
"data": {
"list": [
{
"id": 9,
"pay_amount": "2369.00", // 订单总额
"order_count": 4, // 订单单数(缴纳次数)
"user_count": 3, // 缴纳人数
"name": "云易付官方",
"taxpayer_ldentification_number": "9111039329238283E"
}
],
"total": 3
}
}
请求URL
get
api/individualIncomeTaxPaySlip/company/{id}
请求参数
tax_month
: [string] 缴纳月份company_id
: [int] 公司标识as_excel
: [int] 1 导出
响应
{
"status": 0,
"msg": "",
"data": {
"list": [
{
"pay_date": "2021-01-30 14:35:31",
"created_at": "2021-01-30 14:35:31",
"amount": "2222.00",
"user_id": 48,
"card_no": "421122198708037319",
"company_id": 15,
"user": {
"id": 48,
"real_name": "邱凯"
},
"user_order_details": [
{
"id": 45,
"company_id": 15,
"platform_id": 1,
"sn": "34548021012923072788854",
"alipay_order_id": null,
"dealer_order_id": "333",
"dealer_user_id": "ren_gong",
"activity_id": 2,
"user_id": 48,
"card_no": "421122198708037319",
"pay_type": 3,
"pay_amount": "2222.00",
"pay_date": "2021-01-30 14:35:31",
"pay_fund_order_id": "333",
"pay_remark": "单笔转账",
"notify_url": "人工,无回调",
"alipay_response": null,
"job_state": 0,
"job_query_state": 0,
"sub_code": null,
"sub_msg": null,
"status": 15,
"inform_count": 0,
"inform_status": 2,
"error_retry_time": 0,
"tax_amount": "0.00",
"created_at": "2021-01-30 14:35:31",
"updated_at": "2021-03-11 21:28:54"
}
]
},
],
"total": 2
}
}
请求URL
get
api/individualIncomeTaxPaySlip
请求参数
tax_month
: [string] 缴纳月份 (可选)company_id
: [int] 公司标识(可选)
响应
{
"status": 0,
"msg": "",
"data": {
"list": [
{
"pay_date": "2021-01-30 14:35:31",
"created_at": "2021-01-30 14:35:31",
"amount": "2222.00",
"user_id": 48,
"card_no": "421122198708037319",
"company_id": 15,
"company": {
"id": 15,
"name": "测试域名添加"
},
"user": {
"id": 48,
"real_name": "邱凯"
},
"user_order_details": [
{
"id": 45,
"company_id": 15,
"platform_id": 1,
"sn": "34548021012923072788854",
"alipay_order_id": null,
"dealer_order_id": "333",
"dealer_user_id": "ren_gong",
"activity_id": 2,
"user_id": 48,
"card_no": "421122198708037319",
"pay_type": 3,
"pay_amount": "2222.00",
"pay_date": "2021-01-30 14:35:31",
"pay_fund_order_id": "333",
"pay_remark": "单笔转账",
"notify_url": "人工,无回调",
"alipay_response": null,
"job_state": 0,
"job_query_state": 0,
"sub_code": null,
"sub_msg": null,
"status": 15,
"inform_count": 0,
"inform_status": 2,
"error_retry_time": 0,
"tax_amount": "0.00",
"created_at": "2021-01-30 14:35:31",
"updated_at": "2021-03-11 21:28:54"
}
]
},
],
"total": 2,
"amount": "2222.00"
}
}
请求URL
post
api/individualIncomeTaxPayCertificate
请求参数
tax_month
: [string] 缴纳月份company_id
: [int] 公司标识urls
: [array] 链接
响应
{
"status": 0,
"msg": "",
"data": null
}
请求URL
put
api/individualIncomeTaxPayCertificate/{id}
请求参数
urls
: [array] 链接
响应
{
"status": 0,
"msg": "",
"data": null
}
请求URL
delete
api/individualIncomeTaxPayCertificate/{id}
响应
{
"status": 0,
"msg": "",
"data": null
}
请求URL
post
api/individualIncomeTaxPayCertificate
请求参数
tax_month
: [string] 缴纳月份 (可选)company_id
: [int] 公司标识(可选)
响应
{
"status": 0,
"msg": "",
"data": {
"list": [
{
"id": 2,
"tax_month": "2021-03",
"company_id": 15,
"urls": [
"/uploads/2021-03//324731615376207.jpg",
"/uploads/2021-03//324731615376207.jpg"
],
"platform_id": 1,
"admin_user_id": 1,
"created_at": "2021-03-12 17:18:26",
"updated_at": "2021-03-12 17:18:26",
"admin_user": {
"id": 1,
"name": "平台admin"
}
}
],
"total": 1
}
}
请求URL
get
api/financialAffairs
响应
{
"status": 0,
"msg": "",
"data": {
"companyRecharge": {
"amount": "800.00",
"commission_charge": "19.72",
"list": [
{
"id": 59,
"company_id": 15,
"platform_id": 1,
"payment_no": "20201221200040011100200069727193",
"amount": "20.00",
"account_no": "ceshiyuming",
"pay_time": "2020-12-21 12:37:00",
"status": 1,
"commission_charge": "0.58",
"commission_charge_rate": "3.00",
"actual_amount": "19.42",
"open_invoice_status": 0,
"invoice_id": 0,
"created_at": "2021-03-14 14:58:25",
"updated_at": "2021-03-14 14:58:25",
"company": {
"id": 15,
"name": "测试域名添加"
}
}
]
},
"vatLocalTax": {
"success_amount": "80.00",
"success_tax": "0.00",
"list": [
{
"id": 3,
"company_id": 15,
"platform_id": 1,
"invoice_track_no": null,
"invoice_track_phone": null,
"status": 5,
"unit": "套",
"rate": 7,
"description": "1234",
"model": null,
"number": "1.00",
"amount": "20.00",
"apply_time": "2021-03-11 17:57:25",
"invoice_title": "(测试)光盈创新122",
"title_type": 1,
"invoice_type": 1,
"taxpayer_ldentification_number": "123456789tttt1",
"bank_name": "北京银行",
"bank_account": "123456789tttt1",
"telephone": "16621089916",
"business_address": "测试地址",
"invoice_nature": 5,
"mailing_address": "北京",
"recipients": "大哥",
"contact_number": "16621089913",
"remark": null,
"reason": "",
"value_added_tax": "0.00",
"local_tax": "0.00",
"created_at": "2021-03-11 17:57:25",
"updated_at": "2021-03-12 18:27:45",
"company": {
"id": 15,
"name": "测试域名添加"
}
}
],
"wait_amount": 0
},
"personalIncomeTax": {
"success_amount": "3009.62",
"success_tax": 15.05,
"list": [
{
"id": 48,
"company_id": 5,
"platform_id": 1,
"sn": "100521013106423048314",
"alipay_order_id": "20210131110070000006880006787658",
"dealer_order_id": "zxq22cdr3zcadtwee",
"dealer_user_id": "qwertyuiop",
"activity_id": 0,
"user_id": 53,
"card_no": "16621089913@qq.com",
"pay_type": 1,
"pay_amount": "10.10",
"pay_date": "2021-01-31 07:09:30",
"pay_fund_order_id": null,
"pay_remark": "单笔资金转账",
"notify_url": "http://api-yunyifu.test/api/queue",
"alipay_response": "{\"code\":\"10000\",\"msg\":\"Success\",\"order_id\":\"20210131110070000006880006787658\",\"out_biz_no\":\"100521013106423048314\",\"status\":\"SUCCESS\"}",
"job_state": 3,
"job_query_state": 0,
"sub_code": null,
"sub_msg": null,
"status": 15,
"inform_count": 6,
"inform_status": 1,
"error_retry_time": 0,
"tax_amount": "0.00",
"created_at": "2021-01-31 14:42:30",
"updated_at": "2021-03-05 00:42:56",
"company": {
"id": 5,
"name": "成都志嘉励合科技有限公司"
},
"user": null
}
],
"wait_amount": 0
}
}
}