This commit is contained in:
Redkale
2016-07-03 09:33:26 +08:00
parent f4bd6074f1
commit 1af2457cc7

View File

@@ -0,0 +1,22 @@
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
package org.redkale.service;
import java.lang.annotation.*;
/**
* 用于定义错误码的注解
*
* @author zhangjx
*/
@Inherited
@Documented
@Target(value = {ElementType.FIELD})
@Retention(value = RetentionPolicy.RUNTIME)
public @interface RetLabel {
String value();
}