prescript

This commit is contained in:
wangjinlei
2023-12-14 13:23:18 +08:00
parent 508a260a5a
commit 6a42c41ec2
3 changed files with 52 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ import com.baomidou.mybatisplus.annotation.*;
import lombok.Data;
import java.util.Date;
import java.util.List;
@Data
@TableName("prescript")
@@ -35,4 +36,8 @@ public class PrescriptEntity {
@TableLogic
private Integer delFlag;
@TableField(exist = false)
private List<String> imageList;
}