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

coo.mvc.converter.ParamsToString Maven / Gradle / Ivy

package coo.mvc.converter;

import org.springframework.core.convert.converter.Converter;

import coo.base.model.Params;

/**
 * Params转换成字符串转换器。
 */
public class ParamsToString implements Converter {
	@Override
	public String convert(Params source) {
		return source.toString();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy