You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
802 B
41 lines
802 B
package com.liuyanzhao.ssm.blog.entity;
|
|
|
|
import lombok.Data;
|
|
|
|
import java.io.Serializable;
|
|
|
|
/**
|
|
* @author liuyanzhao
|
|
*/
|
|
@Data
|
|
public class Options implements Serializable{
|
|
private static final long serialVersionUID = -776792869602511933L;
|
|
private Integer optionId;
|
|
|
|
private String optionSiteTitle;
|
|
|
|
private String optionSiteDescrption;
|
|
|
|
private String optionMetaDescrption;
|
|
|
|
private String optionMetaKeyword;
|
|
|
|
private String optionAboutsiteAvatar;
|
|
|
|
private String optionAboutsiteTitle;
|
|
|
|
private String optionAboutsiteContent;
|
|
|
|
private String optionAboutsiteWechat;
|
|
|
|
private String optionAboutsiteQq;
|
|
|
|
private String optionAboutsiteGithub;
|
|
|
|
private String optionAboutsiteWeibo;
|
|
|
|
private String optionTongji;
|
|
|
|
private Integer optionStatus;
|
|
|
|
} |