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.fanli.service.inter.homemodule;
|
| import com.yeshi.fanli.entity.bus.homemodule.SpecialExtra;
| import com.yeshi.fanli.exception.homemodule.SpecialException;
|
| /**
| * 专题额外
| *
| * @author Administrator
| *
| */
| public interface SpecialExtraService{
|
| /**
| * 保存信息
| * @param record
| */
| public void saveExtraInfo(SpecialExtra record) throws SpecialException;
|
| /**
| * 查询
| * @param id
| * @return
| */
| public SpecialExtra selectByPrimaryKey(Long id);
|
| }
|
|