package com.stylefeng.guns.modular.account.unionpay;
|
|
import com.fasterxml.jackson.annotation.JsonProperty;
|
import lombok.Data;
|
import lombok.ToString;
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
import org.springframework.stereotype.Component;
|
|
import java.io.Serializable;
|
|
@ToString
|
@Data
|
@Component
|
@ConfigurationProperties(prefix = "qrcode")
|
public class QrCodeConfiguration implements Serializable {
|
|
/**
|
* 获取 App ID
|
*
|
* @return App ID
|
*/
|
@JsonProperty("appId")
|
private String appId;
|
|
/**
|
* 获取 App KEY
|
*
|
* @return App KEY
|
*/
|
@JsonProperty("appKey")
|
private String appKey;
|
|
/**
|
* 获取 App md5key
|
*
|
* @return App md5key
|
*/
|
@JsonProperty("md5key")
|
private String md5key;
|
|
/**
|
* 获取 App msgSrcId
|
*
|
* @return App msgSrcId
|
*/
|
@JsonProperty("msgSrcId")
|
private String msgSrcId;
|
|
/**
|
* 获取 mid
|
*
|
* @return mid
|
*/
|
@JsonProperty("mid")
|
private String mid;
|
|
/**
|
* 获取 tid
|
*
|
* @return tid
|
*/
|
@JsonProperty("tid")
|
private String tid;
|
|
/**
|
* 获取 instMid
|
*
|
* @return instMid
|
*/
|
@JsonProperty("instMid")
|
private String instMid;
|
|
}
|