4 小时以前 4d15fa8051884869c5b612d0641508874cc71811
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
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;
 
}