Move background to database.
parent
a652927c9b
commit
c11ec55cbf
@ -0,0 +1,42 @@
|
|||||||
|
package com.peteralbus.domain;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.annotation.IdType;
|
||||||
|
import com.baomidou.mybatisplus.annotation.TableId;
|
||||||
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
||||||
|
import lombok.AllArgsConstructor;
|
||||||
|
import lombok.Data;
|
||||||
|
import lombok.NoArgsConstructor;
|
||||||
|
import lombok.ToString;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The type Background image.
|
||||||
|
* Store background image information of blog.
|
||||||
|
*/
|
||||||
|
@Data
|
||||||
|
@AllArgsConstructor
|
||||||
|
@NoArgsConstructor
|
||||||
|
@ToString
|
||||||
|
public class BackgroundImage {
|
||||||
|
/**
|
||||||
|
* The Background id.
|
||||||
|
*/
|
||||||
|
@TableId(type= IdType.ASSIGN_ID)
|
||||||
|
@JsonFormat(shape = JsonFormat.Shape.STRING)
|
||||||
|
Long backgroundId;
|
||||||
|
/**
|
||||||
|
* The Background url.
|
||||||
|
*/
|
||||||
|
String backgroundUrl;
|
||||||
|
/**
|
||||||
|
* The Background path.
|
||||||
|
*/
|
||||||
|
String backgroundPath;
|
||||||
|
/**
|
||||||
|
* The Background description.
|
||||||
|
*/
|
||||||
|
String backgroundDescription;
|
||||||
|
/**
|
||||||
|
* Whether put it into random list.
|
||||||
|
*/
|
||||||
|
Boolean isShow;
|
||||||
|
}
|
@ -0,0 +1,12 @@
|
|||||||
|
package com.peteralbus.mapper;
|
||||||
|
|
||||||
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
||||||
|
import com.peteralbus.domain.BackgroundImage;
|
||||||
|
import org.apache.ibatis.annotations.Mapper;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The interface Background image mapper.
|
||||||
|
*/
|
||||||
|
@Mapper
|
||||||
|
public interface BackgroundImageMapper extends BaseMapper<BackgroundImage> {
|
||||||
|
}
|
@ -0,0 +1,49 @@
|
|||||||
|
package com.peteralbus.service;
|
||||||
|
|
||||||
|
import com.peteralbus.domain.BackgroundImage;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The interface Background image service.
|
||||||
|
*/
|
||||||
|
public interface BackgroundImageService {
|
||||||
|
/**
|
||||||
|
* Query all list.
|
||||||
|
*
|
||||||
|
* @return the list
|
||||||
|
*/
|
||||||
|
List<BackgroundImage> queryAll();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Add int.
|
||||||
|
*
|
||||||
|
* @param backgroundImage the background image
|
||||||
|
* @return the int
|
||||||
|
*/
|
||||||
|
int add(BackgroundImage backgroundImage);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Update int.
|
||||||
|
*
|
||||||
|
* @param backgroundImage the background image
|
||||||
|
* @return the int
|
||||||
|
*/
|
||||||
|
int update(BackgroundImage backgroundImage);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Delete int.
|
||||||
|
*
|
||||||
|
* @param backgroundId the background id
|
||||||
|
* @return the int
|
||||||
|
*/
|
||||||
|
int delete(Long backgroundId);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Query by id background image.
|
||||||
|
*
|
||||||
|
* @param backgroundId the background id
|
||||||
|
* @return the background image
|
||||||
|
*/
|
||||||
|
BackgroundImage queryById(Long backgroundId);
|
||||||
|
}
|
@ -0,0 +1,41 @@
|
|||||||
|
package com.peteralbus.service.impl;
|
||||||
|
|
||||||
|
import com.peteralbus.domain.BackgroundImage;
|
||||||
|
import com.peteralbus.mapper.BackgroundImageMapper;
|
||||||
|
import com.peteralbus.service.BackgroundImageService;
|
||||||
|
import lombok.RequiredArgsConstructor;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
@Service
|
||||||
|
@RequiredArgsConstructor(onConstructor = @__(@Autowired))
|
||||||
|
public class BackgroundImageServiceImpl implements BackgroundImageService {
|
||||||
|
private final BackgroundImageMapper backgroundImageMapper;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<BackgroundImage> queryAll() {
|
||||||
|
return backgroundImageMapper.selectList(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int add(BackgroundImage backgroundImage) {
|
||||||
|
return backgroundImageMapper.insert(backgroundImage);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int update(BackgroundImage backgroundImage) {
|
||||||
|
return backgroundImageMapper.updateById(backgroundImage);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int delete(Long backgroundId) {
|
||||||
|
return backgroundImageMapper.deleteById(backgroundId);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public BackgroundImage queryById(Long backgroundId) {
|
||||||
|
return backgroundImageMapper.selectById(backgroundId);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue