package cn.iocoder.yudao.module.srm.dal.dataobject; import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO; import com.baomidou.mybatisplus.annotation.KeySequence; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import lombok.*; import java.math.BigDecimal; import java.time.LocalDateTime; @TableName("srm_bid_evaluation") @KeySequence("srm_bid_evaluation_seq") @Data @EqualsAndHashCode(callSuper = true) @ToString(callSuper = true) @Builder @NoArgsConstructor @AllArgsConstructor public class SrmBidEvaluationDO extends BaseDO { @TableId private Long id; private Long tenderProjectId; private Long supplierId; private Long bidId; private BigDecimal priceScore; private BigDecimal techScore; private BigDecimal deliveryScore; private BigDecimal serviceScore; private BigDecimal compositeScore; private Integer ranking; private Long evaluatorId; private String evaluatorName; private String evaluationOpinion; private LocalDateTime evaluationTime; }