| | |
| | | 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);
|
| | |
|
| | | |
| | | }
|
| | | 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); |
| | | |
| | | |
| | | } |