yanghb
2024-12-17 1287337fd0b0c156ec79712f9a600ebeffefe3a6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.zzg.common.core.domain.entity.state;
 
import com.baomidou.mybatisplus.annotation.*;
import com.zzg.common.core.domain.BaseEntity;
import lombok.Data;
 
import java.util.Date;
@Data
@TableName("state_project_collection_file")
public class StateProjectCollectionFile extends BaseEntity {
    @TableId(type = IdType.ASSIGN_UUID)
    private String id;
    @TableField(value = "del_flag")
    @TableLogic(value = "0",delval = "1")
    private Integer delFlag = 0;
    private Integer fileType;
    private String fileUrl;
    private String fileName;
    private String projectId;
    private Integer parentId = 0;
 
    // Getters and Setters
}