package com.artfess.base.trans.other;

/**
 * @description: 转换对象
 * @author: jiahong.xing
 * @create: 2019-06-03 16:30
 **/
public interface RepetitionComparable<Tsource> {

    /**
     * 根据返回来的排序对象进行操作
     *
     * @param tsource
     * @return
     */
    Comparable deRepetition(Tsource tsource);
}
