ludc
2024-06-25 ca2d9c7e8746f81ad9a0f19e2a1ca6515c7ac931
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.vci.web.other;
 
import com.vci.corba.omd.data.BusinessObject;
 
/**
 * 对象服务中,map转成VO的对象
 * @author weidy
 * @date 2022-1-19
 * @param <T> vo的类型
 */
@FunctionalInterface
public interface OsMapToObjFunction<T> {
    /**
     * 转换
     * @param data 数据的映射
     * @param obj 对象
     */
    void convert(BusinessObject data, T obj);
}