package com.artfess.base.trans.other;

/**
 * @ClassName Trans
 * @Author jiahong.xing
 * @Date 2019/5/6 15:00
 * @Description 转换对象
 */
public interface RepetitionSourceToTarget<Tsource, Ttarget> {

    /**
     * 根据返回来的字符串，进行操作
     *
     * @param tsource
     * @return
     */
    Ttarget deRepetition(Tsource tsource);
}
