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

com.mizhousoft.boot.weixin.properties.WeixinPayListProperties Maven / Gradle / Ivy

The newest version!
package com.mizhousoft.boot.weixin.properties;

import java.util.List;

import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.stereotype.Component;

/**
 * 配置
 *
 * @version
 */
@Component
@ConfigurationProperties(prefix = "weixin.pay")
public class WeixinPayListProperties
{
	private List merchants;

	/**
	 * 获取merchants
	 * 
	 * @return
	 */
	public List getMerchants()
	{
		return merchants;
	}

	/**
	 * 设置merchants
	 * 
	 * @param merchants
	 */
	public void setMerchants(List merchants)
	{
		this.merchants = merchants;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy