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

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

package coo.mvc.converter;

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

import coo.core.model.UuidEntity;

/**
 * UuidEntity转换为字符串转换器。
 */
public class UuidEntityToString implements Converter {
	@Override
	public String convert(UuidEntity source) {
		return source.getId();
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy