admin
2021-04-22 745320cbb4edfa4fbc8f0f95483a4ee7893d5769
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
package com.yeshi.buwan.service.inter.juhe;
 
import com.yeshi.buwan.domain.pptv.PPTVPlayProcessRecord;
import com.yeshi.buwan.exception.ParamsException;
 
import javax.validation.Valid;
 
public interface PPTVPlayProcessRecordService {
 
 
    /**
     * 添加记录
     *
     * @param record
     */
    public void addRecord(@Valid PPTVPlayProcessRecord record) throws ParamsException;
 
 
    /**
     * 根据主键查询
     *
     * @param id
     * @return
     */
    public PPTVPlayProcessRecord selectByPrimaryKey(String id);
 
}