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
28
29
30
31
32
33
| package com.yeshi.fanli.service.inter.homemodule;
|
| import com.yeshi.fanli.entity.bus.homemodule.CommonShareInfo;
| import com.yeshi.fanli.exception.homemodule.SpecialException;
|
| /**
| * 专题额外
| *
| * @author Administrator
| *
| */
| public interface CommonShareInfoService{
|
| /**
| * 保存信息
| * @param record
| */
| public void save(CommonShareInfo record) throws SpecialException;
|
|
| /**
| * 根据上级id +
| * @param pid
| * @param infoEnum
| * @return
| */
| public CommonShareInfo getByPidAndType(Long pid, String type);
|
|
| public void deleteByPidAndType(Long pid, String type);
|
|
| }
|
|