49 lines
770 B
Java
49 lines
770 B
Java
package com.peanut.modules.book.entity;
|
|
|
|
import com.baomidou.mybatisplus.annotation.TableId;
|
|
import com.baomidou.mybatisplus.annotation.TableLogic;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import lombok.Data;
|
|
|
|
@Data
|
|
@TableName("meridians")
|
|
public class Meridians {
|
|
private static final long serialVersionUID = 1L;
|
|
|
|
@TableId
|
|
private Integer id;
|
|
|
|
/**
|
|
* 名称
|
|
*/
|
|
private String name;
|
|
|
|
/**
|
|
* 图片
|
|
*/
|
|
private String img;
|
|
|
|
/**
|
|
* 简述
|
|
*/
|
|
private String description;
|
|
|
|
/**
|
|
* 歌
|
|
*/
|
|
private String song;
|
|
|
|
/**
|
|
* 详细信息
|
|
*/
|
|
private String information;
|
|
|
|
/**
|
|
* 排序
|
|
*/
|
|
private Integer sort;
|
|
|
|
@TableLogic
|
|
private Integer delFlag;
|
|
}
|