shikeying
2024-01-11 104000b2ce3bdfd3fdf0f75f0713d2d3194de835
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.walker.pay.allinpay;
 
import com.walker.pay.AbstractOrderGenerator;
 
public abstract class BaseOrderGenerator extends AbstractOrderGenerator {
 
    public String getSignType() {
        return signType;
    }
 
    /**
     * 设置签名的加密方式。<p></p>
     * 目前通联支持2种: RSA/SM2,参考常量:
     * {@linkplain Constants#SIGN_TYPE_RSA} | {@linkplain Constants#SIGN_TYPE_SM2}
     * @param signType
     */
    public void setSignType(String signType) {
        this.signType = signType;
    }
 
    private String signType = Constants.SIGN_TYPE_MD5;
 
}