| | |
| | |
|
| | | import java.util.List;
|
| | |
|
| | | import org.springframework.web.multipart.MultipartFile;
|
| | |
|
| | | import com.yeshi.fanli.entity.bus.homemodule.SpecialCard;
|
| | | import com.yeshi.fanli.exception.homemodule.SpecialCardException;
|
| | |
|
| | | /**
|
| | | * 专题标识
|
| | |
| | | *
|
| | | */
|
| | | public interface SpecialCardService {
|
| | |
|
| | | public int deleteByPrimaryKey(Long id);
|
| | |
|
| | | public int insert(SpecialCard record);
|
| | |
|
| | | public int insertSelective(SpecialCard record);
|
| | |
|
| | | public SpecialCard selectByPrimaryKey(Long id);
|
| | |
|
| | | public int updateByPrimaryKeySelective(SpecialCard record);
|
| | |
|
| | | public int updateByPrimaryKey(SpecialCard record);
|
| | |
|
| | | public List<SpecialCard> listQuery(long start, int count, String key, Integer sort);
|
| | |
|
| | |
| | | */
|
| | | public int deleteBatchByPrimaryKey(List<Long> list) throws Exception;
|
| | |
|
| | | /**
|
| | | * 新增、修改
|
| | | * @param file
|
| | | * @param record
|
| | | * @throws SpecialCardException
|
| | | * @throws Exception
|
| | | */
|
| | | public void saveObject(MultipartFile file, SpecialCard record) throws SpecialCardException, Exception;
|
| | |
|
| | | /**
|
| | | * 获取背景图片
|
| | | * @param placeKey
|
| | | * @return
|
| | | */
|
| | | public String getbottomPicture(String placeKey);
|
| | |
|
| | | }
|