package com.lyms.talkonlineweb.result;
/**
* @ProjectName: talkonline
* @Package: com.lyms.talkonlineweb.result
* @ClassName: IResultConvert
* @Author: lqy
* @Description: 返回转换类
* @Date: 2021-09-08 14:57
* @Version:
*/
public interface IResultConvert<T,V> {
T convertToResult(V destModel);
}