16 lines
311 B
Java
16 lines
311 B
Java
package com.changhu.common.annotation;
|
|
|
|
import java.lang.annotation.*;
|
|
|
|
/**
|
|
* author: luozhun
|
|
* desc: JsonResult
|
|
* createTime: 2023/8/18 10:47
|
|
*/
|
|
@Target({ElementType.TYPE, ElementType.METHOD})
|
|
@Retention(RetentionPolicy.RUNTIME)
|
|
@Documented
|
|
public @interface JsonBody {
|
|
boolean value() default true;
|
|
}
|