admin
2025-02-20 f537abe9f3646c739beaf15076246a2f71a347e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.yeshi.buwan.service.inter.live;
 
import com.yeshi.buwan.live.migu.MiGuLiveListInfo;
 
public interface MiGuLiveService {
 
    /**
     * 保存频道信息
     *
     * @param info
     */
    public void saveChannelInfo(MiGuLiveListInfo info);
 
 
    /**
     * 根据主键查询
     *
     * @param id
     * @return
     */
    public MiGuLiveListInfo selectByPrimaryKey(String id);
 
}