prescript

This commit is contained in:
wangjinlei
2023-12-14 15:22:10 +08:00
parent af081f6e81
commit a3b3c1f5f6
4 changed files with 47 additions and 6 deletions

View File

@@ -21,6 +21,9 @@ public class PrescriptCategoryEntity {
@TableLogic
private Integer delFlag;
@TableField(exist = false)
private PrescriptCategoryEntity child;
@TableField(exist = false)
private List<PrescriptCategoryEntity> children;

View File

@@ -40,4 +40,7 @@ public class PrescriptEntity {
@TableField(exist = false)
private List<String> imageList;
@TableField(exist = false)
private PrescriptCategoryEntity prescriptCategoryEntity;
}