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; @TableName("srm_supplier_quote") @KeySequence("srm_supplier_quote_seq") @Data @EqualsAndHashCode(callSuper = true) @ToString(callSuper = true) @Builder @NoArgsConstructor @AllArgsConstructor public class SrmSupplierQuoteDO extends BaseDO { @TableId private Long id; private Long tenderProjectId; private Long supplierId; private Long bidId; private Long tenderMaterialId; private BigDecimal quotePrice; private BigDecimal taxRate; private Integer deliveryCycle; private String paymentTerms; private Integer warrantyPeriod; private String remark; }