26 lines
627 B
Java
26 lines
627 B
Java
/*
|
|
* 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 com.wentch.redkale.convert;
|
|
|
|
import java.lang.annotation.*;
|
|
import static java.lang.annotation.ElementType.TYPE;
|
|
import static java.lang.annotation.RetentionPolicy.RUNTIME;
|
|
|
|
/**
|
|
* 用于类名的别名, 类似javax.persistence.Table
|
|
* 该值必须是全局唯一
|
|
*
|
|
* @author zhangjx
|
|
*/
|
|
@Inherited
|
|
@Documented
|
|
@Target({TYPE})
|
|
@Retention(RUNTIME)
|
|
public @interface ConvertEntity {
|
|
|
|
String value();
|
|
}
|