package com.artfess.base.trans.other;

/**
 * @ClassName Trans
 * @Author jiahong.xing
 * @Date 2019/5/6 15:00
 * @Description 对象拷贝接口
 */
public interface Trans<Tsource, Ttarget> {

    void copy(Tsource tsource, Ttarget ttarget);
}
