| | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableId; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import com.ruoyi.common.core.domain.BaseModel; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | @TableField("attempt_score") |
| | | private Double attemptScore; |
| | | |
| | | @ApiModelProperty(value = "指派时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @TableField("assign_time") |
| | | private LocalDateTime assignTime; |
| | | |
| | | @ApiModelProperty(value = "接收时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @TableField("receive_time") |
| | | private LocalDateTime receiveTime; |
| | | |
| | | @ApiModelProperty(value = "完成时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") |
| | | @TableField("finish_time") |
| | | private LocalDateTime finishTime; |
| | | |
| | | @ApiModelProperty(value = "是否在任务池 1=是 0=否") |
| | | @TableField("is_mission_pool") |
| | | private Integer isMissionPool; |
| | | |
| | | |
| | | @ApiModelProperty(value = "用户任务id") |
| | | @TableField(exist = false) |
| | | private String userMissionId; |
| | | |
| | | |
| | | |
| | | @ApiModelProperty(value = "任务类型") |
| | | @TableField(exist = false) |
| | | private String missionType; |
| | | |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "任务结果 1已完成 2未完成") |
| | | private Integer missionStatus; |
| | | |
| | | |
| | | @TableField(exist = false) |
| | | @ApiModelProperty(value = "任务评分 ") |
| | | private Double score; |
| | | |
| | | } |