new prescript
This commit is contained in:
@@ -0,0 +1,41 @@
|
||||
package com.peanut.modules.book.entity;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableLogic;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
import java.util.Date;
|
||||
|
||||
@Data
|
||||
@TableName("prescript")
|
||||
public class PrescriptEntity {
|
||||
@TableId(type = IdType.AUTO)
|
||||
private Integer prescriptId;
|
||||
|
||||
private Integer prescriptCategoryId;
|
||||
|
||||
private String title;
|
||||
|
||||
private String images;
|
||||
|
||||
private String source;
|
||||
|
||||
private String doseOld;
|
||||
|
||||
private String doseNow;
|
||||
|
||||
private String usage;
|
||||
|
||||
private String preSong;
|
||||
|
||||
private String indications;
|
||||
|
||||
private Integer sort;
|
||||
|
||||
private Date createTime;
|
||||
|
||||
@TableLogic
|
||||
private Integer delFlag;
|
||||
}
|
||||
Reference in New Issue
Block a user