deploy-ease-platform/backend/src/main/resources/messages.properties
2024-11-29 17:43:44 +08:00

35 lines
1.3 KiB
Properties

# 通用响应
response.success=操作成功
response.error=系统错误
response.invalid.param=无效的参数
response.unauthorized=未授权
response.forbidden=禁止访问
response.not.found=资源未找到
response.conflict=资源冲突
response.unauthorized.full=访问此资源需要完全身份验证
# 业务错误
tenant.not.found=租户不存在
data.not.found=找不到ID为{0}的{1}
# 用户相关
user.not.found=用户不存在
user.username.exists=用户名已存在
user.email.exists=邮箱已存在
# 系统异常消息
system.optimistic.lock.error=数据已被其他用户修改,请刷新后重试
system.pessimistic.lock.error=数据正被其他用户操作,请稍后重试
system.concurrent.update.error=并发更新冲突,请重试
system.retry.exceeded.error=操作重试次数超限,请稍后再试
# Entity Not Found Messages
entity.not.found.id=找不到ID为{0}的实体
entity.not.found.message={0}
entity.not.found.name.id=找不到ID为{1}的{0}
# 依赖注入相关
dependency.injection.service.not.found=找不到实体 {0} 对应的服务 (尝试过的bean名称: {1})
dependency.injection.repository.not.found=找不到实体 {0} 对应的Repository: {1}
dependency.injection.converter.not.found=找不到实体 {0} 对应的Converter: {1}
dependency.injection.entitypath.failed=初始化实体 {0} 的EntityPath失败: {1}