| | |
| | | DOC_UPLOAD_ERROR(false, 25323, "文档导入失败!"), |
| | | DOC_DEL_ERROR(false, 25324, "该文档无法删除!"), |
| | | DOC_IS_EXIST(false, 25325, "该文档已存在!"), |
| | | DOC_DEVICE_EXIST(false, 25326, "该文档有设备关联信息!"); |
| | | DOC_DEVICE_EXIST(false, 25326, "该文档有设备关联信息!"), |
| | | DOC_BATCH_ERROR(false, 25327, "导入文档新增批次失败,请重试!"); |
| | | |
| | | //操作代码 |
| | | @ApiModelProperty(value = "操作是否成功", example = "true", required = true) |
| | |
| | | //提示信息 |
| | | @ApiModelProperty(value = "操作提示", example = "操作过于频繁!", required = true) |
| | | String message; |
| | | private DocumentCode(boolean success, int code, String message){ |
| | | DocumentCode(boolean success, int code, String message){ |
| | | this.success = success; |
| | | this.code = code; |
| | | this.message = message; |