liusheng
2024-03-19 519886a70d630e3cdd6c0f40f55fcebc6e780dc5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
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;
    }
}