package utils; /** * BO转VO接口 * Created by tangxiangan. */ public interface BeanConverter<B,V> { V convert(B b); V detail(B b); }