1
This commit is contained in:
@@ -0,0 +1,49 @@
|
||||
package com.peanut.modules.common.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.*;
|
||||
import lombok.Data;
|
||||
|
||||
import java.io.Serializable;
|
||||
import java.util.Date;
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@TableName("point")
|
||||
public class PointEntity implements Serializable {
|
||||
|
||||
@TableId(type = IdType.AUTO)
|
||||
private Integer id;
|
||||
|
||||
private String title;
|
||||
|
||||
private String images;
|
||||
|
||||
@TableField(exist = false)
|
||||
private List<String> imageList;
|
||||
|
||||
private Integer pointCategoryId;
|
||||
|
||||
private String alias;
|
||||
|
||||
private String meridian;
|
||||
|
||||
private String position;
|
||||
|
||||
private String anatomy;
|
||||
|
||||
private String indication;
|
||||
|
||||
private String compatibility;
|
||||
|
||||
private String literature;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
@TableLogic
|
||||
private Integer delFlag;
|
||||
|
||||
@TableField(exist = false)
|
||||
private String categoryString;
|
||||
}
|
||||
Reference in New Issue
Block a user