| | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.approve.utils.ListToStringTypeHandler; |
| | | import com.ruoyi.framework.aspectj.lang.annotation.Excel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import io.swagger.v3.oas.annotations.media.Schema; |
| | | import lombok.Data; |
| | | import org.apache.ibatis.type.JdbcType; |
| | | import org.springframework.format.annotation.DateTimeFormat; |
| | |
| | | * 计划标题 |
| | | */ |
| | | @Excel(name = "计划标题") |
| | | @ApiModelProperty("计划标题") |
| | | @Schema(description = "计划标题") |
| | | private String title; |
| | | /** |
| | | * 计划描述 |
| | | */ |
| | | @Excel(name = "计划描述") |
| | | @ApiModelProperty("计划描述") |
| | | @Schema(description = "计划描述") |
| | | private String description; |
| | | |
| | | |
| | |
| | | * 计划级别 |
| | | */ |
| | | @Excel(name = "计划级别") |
| | | @ApiModelProperty("计划级别") |
| | | @Schema(description = "计划级别") |
| | | private String level; |
| | | /** |
| | | * 时间周期 |
| | | */ |
| | | @Excel(name = "时间周期") |
| | | @ApiModelProperty("时间周期") |
| | | @Schema(description = "时间周期") |
| | | private String period; |
| | | /** |
| | | * 开始时间 |
| | |
| | | * 负责人 |
| | | */ |
| | | @Excel(name = "负责人") |
| | | @ApiModelProperty("负责人") |
| | | @Schema(description = "负责人") |
| | | private String assignee; |
| | | /** |
| | | * 状态 |
| | | */ |
| | | @Excel(name = "状态") |
| | | @ApiModelProperty("状态") |
| | | @Schema(description = "状态") |
| | | private String status; |
| | | /** |
| | | * 优先级 |
| | | */ |
| | | @Excel(name = "优先级") |
| | | @ApiModelProperty("优先级") |
| | | @Schema(description = "优先级") |
| | | private String priority; |
| | | /** |
| | | * 完成度 |
| | | */ |
| | | @Excel(name = "完成度") |
| | | @ApiModelProperty("完成度") |
| | | @Schema(description = "完成度") |
| | | private Integer progress; |
| | | /** |
| | | * 标签 |
| | | */ |
| | | @Excel(name = "标签") |
| | | @ApiModelProperty("标签") |
| | | @Schema(description = "标签") |
| | | @TableField(value = "tags",typeHandler = ListToStringTypeHandler.class,jdbcType = JdbcType.VARCHAR) |
| | | private List<String> tags; |
| | | /** |
| | |
| | | private Long tenantId; |
| | | |
| | | |
| | | |
| | | @TableField(fill = FieldFill.INSERT) |
| | | private Long deptId; |
| | | } |