All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.redkalex.pay.DIYPayService Maven / Gradle / Ivy

There is a newer version: 2.7.7
Show newest version
/*
 * 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.redkalex.pay;

import static java.lang.annotation.ElementType.TYPE;
import static java.lang.annotation.RetentionPolicy.RUNTIME;

import java.lang.annotation.*;

/**
 * 本注解只能标注在AbstractPayService的子类上。
 *
 * 

详情见: https://redkale.org * * @author zhangjx */ @Inherited @Documented @Target({TYPE}) @Retention(RUNTIME) public @interface DIYPayService { /** * 支付类型, 必须大于50 * * @return short */ short payType(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy