chenhj
2026-04-24 ffe4413db421aabb7446007ff76d4e9943c6fc84
src/main/java/com/ruoyi/projectManagement/pojo/Plan.java
@@ -7,8 +7,7 @@
import com.baomidou.mybatisplus.annotation.TableName;
import java.time.LocalDateTime;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
/**
@@ -17,68 +16,77 @@
 */
@TableName(value ="project_management_plan")
@Data
@ApiModel(description="项目管理计划表(项目管理类型)")
@Schema(description = "项目管理计划表(项目管理类型)")
public class Plan {
    /**
     * 
     */
    @TableId(value = "id", type = IdType.AUTO)
    @ApiModelProperty(value="主键ID")
    @Schema(description = "主键ID")
    private Long id;
    /**
     * 计划名称
     */
    @TableField(value = "name")
    @ApiModelProperty(value="计划名称")
    @Schema(description = "计划名称")
    private String name;
    /**
     * 计划描述
     */
    @TableField(value = "describe")
    @ApiModelProperty(value="计划描述")
    private String describe;
    @TableField(value = "description")
    @Schema(description = "计划描述")
    private String description;
    /**
     * 附件 ,进行分割
     */
    @TableField(value = "attachment")
    @ApiModelProperty(value="附件")
    @Schema(description = "附件")
    private String attachment;
    /**
     * 
     */
    @TableField(value = "is_delete")
    @ApiModelProperty(value="是否删除")
    @Schema(description = "是否删除")
    private Integer isDelete;
    /**
     * 
     */
    @TableField(value = "create_time",fill = FieldFill.INSERT)
    @ApiModelProperty(value="创建时间")
    @Schema(description = "创建时间")
    private LocalDateTime createTime;
    /**
     * 
     */
    @TableField(value = "update_time",fill = FieldFill.INSERT_UPDATE)
    @ApiModelProperty(value="更新时间")
    @Schema(description = "更新时间")
    private LocalDateTime updateTime;
    /**
     * 
     */
    @TableField(value = "create_user",fill = FieldFill.INSERT)
    @ApiModelProperty(value="创建人")
    private String createUser;
    @Schema(description = "创建人")
    private Integer createUser;
    /**
     * 
     */
    @TableField(value = "update_user",fill = FieldFill.INSERT_UPDATE)
    @ApiModelProperty(value="更新人")
    private String updateUser;
    @Schema(description = "更新人")
    private Integer updateUser;
    @TableField(value = "create_user_name", fill = FieldFill.INSERT)
    private String createUserName;
    @TableField(value = "update_user_name", fill = FieldFill.INSERT_UPDATE)
    private String updateUserName;
    @TableField(fill = FieldFill.INSERT)
    private Long deptId;
}