文档
测试

快速反馈后台用户添加接口

POST
http://1503452il4.51mypc.cn/feedbackAuth/add

请求参数

参数名
类型
描述
必填
userId
Long
后台管理员ID(必填)
必填
storeName
string
门店名称
必填
pms_order_code
string
单号
必填
user_json
jsonstring
下单时记录的用户json
必填
order_time
Datetime
下单时间
必填
arrive_time
Datetime
到店时间
必填
leave_time
Datetime
离店时间
必填
roomName
string
房型
必填
room_count
string
房间数
必填
order_price
string
总金额
必填
status
int
状态枚举值
必填
id
int
订单id
必填

返回参数

参数名
类型
描述
必填
code
string
示例:200
必填
result
object
数据字典
必填
createTime
string
示例:2020-08-14 16:29:43
必填
createBy
string
示例:zhangst
必填
updateTime
object
示例:null
必填
updateBy
object
示例:null
必填
id
int
示例:2
必填
backendUserId
int
示例:27
必填
sumMoney
object
示例:null
必填
money
object
示例:null
必填
freshType
int
示例:9
必填
freshRule
object
示例:null
必填
backMobile
object
示例:null
必填
backendRealname
object
示例:null
必填
success
boolean
示例:true
必填
timestamp
string
示例:2020-08-14 16:29:43
必填

说明 / 示例

**返回示例** ```json { "code": "200", "result": { "createTime": "2020-08-14 16:29:43", "createBy": "zhangst", "updateTime": null, "updateBy": null, "id": 2, "backendUserId": 27, "sumMoney": null, "money": null, "freshType": 9, "freshRule": null, "backMobile": null, "backendRealname": null }, "success": true, "timestamp": "2020-08-14 16:29:43" } ``` **result说明** |参数名|类型|说明| |-|-|-| |id | LONG | 主键ID | |backendUserId | LONG | 管理员ID | |sumMoney | Double | 授权金额 | |money | Double | 剩余金额 | |freshType | String | 刷新方式 1:日额度 2:月额度 9:无权限 | |freshRule | String | 刷新规则 | |realName | String | 管理员姓名 | |mobile | String | 管理员手机号 | |hotelName | String | 管理酒店, 多个酒店","相隔| |createTime | String | 创建时间| |createBy | String | 创建人| |updateTime | String | 更新时间| |updateBy | String | 更新人| |surplusTime | String | 下次更新时间|