new prescript

This commit is contained in:
wangjinlei
2023-12-13 17:24:20 +08:00
parent 0376420aca
commit 75fb345328
8 changed files with 122 additions and 0 deletions

View File

@@ -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;
}