| | |
| | | package com.ycl.platform.domain.entity; |
| | | |
| | | import annotation.Excel; |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.baomidou.mybatisplus.annotation.TableLogic; |
| | | import com.baomidou.mybatisplus.annotation.TableName; |
| | | import java.math.BigDecimal; |
| | | import java.time.LocalDateTime; |
| | | import com.ycl.platform.base.AbsEntity; |
| | | import io.swagger.annotations.ApiModel; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import lombok.Data; |
| | | import lombok.experimental.Accessors; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | | * 考核结果 |
| | | * 考核结果对象 t_check_result |
| | | * |
| | | * @author xp |
| | | * @since 2024-03-07 |
| | | * @author ruoyi |
| | | * @date 2024-04-01 |
| | | */ |
| | | @TableName("t_contract_result") |
| | | @Data |
| | | @Accessors(chain = true) |
| | | @TableName("t_check_result") |
| | | @ApiModel(value = "CheckResult对象", description = "考核结果") |
| | | public class CheckResult extends AbsEntity { |
| | | |
| | | public class CheckResult { |
| | | private static final long serialVersionUID = 1L; |
| | | |
| | | @ApiModelProperty("考核对象") |
| | | @TableField("check_unit_id") |
| | | private Integer checkUnitId; |
| | | private Long id; |
| | | |
| | | @ApiModelProperty("考核发布") |
| | | @TableField("check_publish_id") |
| | | private Integer checkPublishId; |
| | | @Excel(name = "考核对象") |
| | | private Long unitId; |
| | | |
| | | @ApiModelProperty("最终分数") |
| | | @TableField("check_score") |
| | | private BigDecimal checkScore; |
| | | @Excel(name = "运维合同") |
| | | private Long contractId; |
| | | |
| | | @ApiModelProperty("系统打分") |
| | | @TableField("system_score") |
| | | private BigDecimal systemScore; |
| | | @Excel(name = "考核发布") |
| | | private Long publishId; |
| | | |
| | | @ApiModelProperty("人工打分") |
| | | @TableField("manual_score") |
| | | private BigDecimal manualScore; |
| | | @Excel(name = "考核分数") |
| | | private BigDecimal score; |
| | | |
| | | @ApiModelProperty("考核时间") |
| | | @TableField("check_time") |
| | | private LocalDateTime checkTime; |
| | | @Excel(name = "是否发布") |
| | | private Integer publish; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | @Excel(name = "考核时间", width = 30, dateFormat = "yyyy-MM-dd") |
| | | private Date checkTime; |
| | | |
| | | @TableLogic |
| | | private String deleted; |
| | | |
| | | private Date updateTime; |
| | | } |