@Component
@Path(value="/customerBox")
@Consumes(value="application/json")
@Produces(value="application/json")
public class CustomerBoxRest
extends java.lang.Object
构造器和说明 |
---|
CustomerBoxRest() |
限定符和类型 | 方法和说明 |
---|---|
ResultDto |
findBoxUsers(CustomerBoxBean bean)
查询用户信息
|
ResultDto |
findBoxUsers1(CustomerBoxBean bean)
删除用户信息
|
ResultDto |
findBoxUsersList(CustomerBoxBean bean)
查询该柜用户
|
ResultDto |
initializeBoxPhone(CustomerBoxBean bean)
手机初始化保险柜(已作废)
guozy
|
ResultDto |
initializeNonBoxPhone(CustomerBoxBean bean)
手机绑定设备,主用户绑定(非租赁柜使用),直接绑定customerBox中非租赁信息不填写
|
ResultDto |
removeUserToDevice(CustomerBoxBean bean)
从设备删除用户
|
ResultDto |
updateBoxControlPwd(CustomerBoxBean bean) |
ResultDto |
userRemoveBox(CustomerBoxBean bean)
返回的是还可以使用的box列表,自己解绑自己
解绑柜子的人不能是柜子的主用户,如果是主用户,必须走恢复出厂接口
|
ResultDto |
userToDevice(CustomerBoxBean bean)
添加一个用户到设备
|
@POST @Path(value="user_remove_box.do") public ResultDto userRemoveBox(CustomerBoxBean bean) throws java.lang.Exception
user_id
- login_uuid
- remove_box_num
- control_pwd
- java.lang.Exception
@POST @Path(value="update_box_control_pwd.do") public ResultDto updateBoxControlPwd(CustomerBoxBean bean)
@POST @Path(value="initialize_non_box_phone.do") public ResultDto initializeNonBoxPhone(CustomerBoxBean bean)
@POST @Path(value="userToDevice.do") public ResultDto userToDevice(CustomerBoxBean bean) throws java.lang.Exception
java.lang.Exception
@POST @Path(value="removeUserToDevice.do") public ResultDto removeUserToDevice(CustomerBoxBean bean) throws java.lang.Exception
java.lang.Exception
@POST @Path(value="findBoxUsersList.do") public ResultDto findBoxUsersList(CustomerBoxBean bean)
@POST @Path(value="findBoxUsers.do") public ResultDto findBoxUsers(CustomerBoxBean bean)
@POST @Path(value="remove_user.do") public ResultDto findBoxUsers1(CustomerBoxBean bean) throws java.lang.Exception
java.lang.Exception
@POST @Path(value="initialize_box_phone.do") public ResultDto initializeBoxPhone(CustomerBoxBean bean)