package com.zhangshu.chat.demo.convert;
import java.util.List;
public interface Convert<T> {
List<T> convert();
}