From 3f567146e494e67af0fc113712ee4bd4aa207b22 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期五, 08 三月 2024 18:53:37 +0800 Subject: [PATCH] MegerIsRemove.java提交 --- ruoyi-project/src/main/java/com/ruoyi/project/domain/MegerIsRemove.java | 51 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 51 insertions(+), 0 deletions(-) diff --git a/ruoyi-project/src/main/java/com/ruoyi/project/domain/MegerIsRemove.java b/ruoyi-project/src/main/java/com/ruoyi/project/domain/MegerIsRemove.java new file mode 100644 index 0000000..a150811 --- /dev/null +++ b/ruoyi-project/src/main/java/com/ruoyi/project/domain/MegerIsRemove.java @@ -0,0 +1,51 @@ +package com.ruoyi.project.domain; + +import com.baomidou.mybatisplus.annotation.IdType; +import com.baomidou.mybatisplus.annotation.TableId; +import com.ruoyi.common.annotation.Excel; +import com.ruoyi.common.core.domain.BaseEntity; +import io.swagger.annotations.ApiModel; +import io.swagger.annotations.ApiModelProperty; +import lombok.Data; + +/** + * 鎹愮尞闄勪欢瀵硅薄 service_donateannex + * + * @author ruoyi + * @date 2021-11-11 + */ +public class MegerIsRemove { + + /** + * 鏄惁闇�瑕佸垹闄� + */ + private Boolean isdel; + + /** + * 鍦板潃 + */ + @ApiModelProperty("鍦板潃") + private String path; + + public MegerIsRemove(Boolean isdel, String path) { + this.isdel = isdel; + this.path = path; + } + + public Boolean getIsdel() { + return isdel; + } + + public void setIsdel(Boolean isdel) { + this.isdel = isdel; + } + + public String getPath() { + return path; + } + + public void setPath(String path) { + this.path = path; + } +} + -- Gitblit v1.9.3