package com.yeshi.buwan.util.video;
|
|
import com.yeshi.buwan.domain.DetailSystem;
|
import com.yeshi.buwan.service.imp.SystemService;
|
|
public class DataCloneUtil {
|
public static void cloneDetailSystemData(String fromId, String toId) {
|
SystemService systemService = new SystemService();
|
DetailSystem from = systemService.getDetailSystemById(fromId);
|
DetailSystem to = systemService.getDetailSystemById(toId);
|
//首页banner
|
|
//栏目分类
|
|
//热门搜索
|
|
//频道大分类
|
|
//热门推荐
|
|
//
|
|
|
|
}
|
|
}
|