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
|
}
|