修改状态(后台) websocket测试 POST {{url_logic}}/device/manage/save 接口描述 修改状态,id必传 响应数据 ```json 根据类型,传指定的状态 /** 申请状态: 审核中 */ public static final Integer status_wait = 0; /** 申请状态: 申请通过 */ public static final Integer status_ok = 1; /** 申请状态: 审核未通过 */ public static final Integer status_fail = 2; /** 申请状态: 已发出快递 */ public static final Integer status_send = 3; /** 申请状态: 已完成 */ public static final Integer status_finish = 4; ```
```json 根据类型,传指定的状态 /** 申请状态: 审核中 */ public static final Integer status_wait = 0; /** 申请状态: 申请通过 */ public static final Integer status_ok = 1; /** 申请状态: 审核未通过 */ public static final Integer status_fail = 2; /** 申请状态: 已发出快递 */ public static final Integer status_send = 3; /** 申请状态: 已完成 */ public static final Integer status_finish = 4; ```