com.alipay.api.internal.mapping.ApiField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.internal.mapping;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 数据结构属性注解。
*
* @author carver.gu
* @since 1.0, Apr 11, 2010
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(value = { ElementType.FIELD })
public @interface ApiField {
// /** JSON属性映射名称 **/
public String value() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy