¶Ô±ÈÐÂÎļþ |
| | |
| | | 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; |
| | | } |
| | | } |
| | | |