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_tender_bid") @KeySequence("srm_tender_bid_seq") @Data @EqualsAndHashCode(callSuper = true) @ToString(callSuper = true) @Builder @NoArgsConstructor @AllArgsConstructor public class SrmTenderBidDO extends BaseDO { @TableId private Long id; private Long tenderProjectId; private Long supplierId; private String bidNo; private Integer bidStatus; private LocalDateTime bidTime; private BigDecimal bidTotalAmount; private String bidFileName; private String bidFileUrl; private String withdrawReason; }