
net.arccode.wechat.pay.api.common.annotation.ApiField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wechat-pay-sdk Show documentation
Show all versions of wechat-pay-sdk Show documentation
wechat pay SDK, out of the box.
The newest version!
package net.arccode.wechat.pay.api.common.annotation;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;
/**
* 数据结构属性注解
*
* @author http://arccode.net
* @since 2015-11-02
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(value = {ElementType.FIELD})
public @interface ApiField {
/**
* 属性映射名称
*/
public String value() default "";
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy