shiyunteng
2025-03-25 51df7aac3c2264151f8dcdb6386f8563ba4483cf
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
package com.by4cloud.platformx.device.entity;
 
import com.baomidou.mybatisplus.annotation.*;
import com.baomidou.mybatisplus.extension.activerecord.Model;
import com.by4cloud.platformx.common.data.mybatis.BaseModel;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.time.LocalDateTime;
 
/**
 * 中标通知书
 *
 * @author syt
 * @date 2025-03-24 17:13:08
 */
@Data
@TableName("purchase_winning_letter")
@EqualsAndHashCode(callSuper = true)
@Schema(description = "中标通知书")
public class PurchaseWinningLetterEntity extends BaseModel<PurchaseWinningLetterEntity> {
 
    /**
    * 中标通知书编码
    */
    @Schema(description="中标通知书编码")
    private String winningCode;
 
    /**
    * 采购计划编号
    */
    @Schema(description="采购计划编号")
    private String purchasePlanCode;
 
    /**
    * 设备编码
    */
    @Schema(description="设备编码")
    private String deviceCode;
 
    /**
    * 设备名称
    */
    @Schema(description="设备名称")
    private String deviceName;
 
    /**
    * 规格型号
    */
    @Schema(description="规格型号")
    private String deviceModels;
 
    /**
    * 关键参数
    */
    @Schema(description="关键参数")
    private String keyParameter;
 
    /**
    * 到货月份
    */
    @Schema(description="到货月份")
    private Integer arrivalMonth;
 
    /**
    * 数量
    */
    @Schema(description="数量")
    private Integer quantity;
 
    /**
    * 单位
    */
    @Schema(description="单位")
    private String unit;
 
    /**
    * 中标单价  /分
    */
    @Schema(description="中标单价  /分")
    private Integer winningPrice;
 
    /**
    * 中标总额   /分
    */
    @Schema(description="中标总额   /分")
    private Integer totalWinningAmount;
 
    /**
    * 拟使用地点
    */
    @Schema(description="拟使用地点")
    private String locationUsed;
 
    /**
    * 中标厂家
    */
    @Schema(description="中标厂家")
    private String winningBidder;
 
    /**
    * 申请人
    */
    @TableField(fill = FieldFill.INSERT)
    @Schema(description="申请人")
    private String createBy;
 
    /**
    * 创建时间
    */
    @TableField(fill = FieldFill.INSERT)
    @Schema(description="创建时间")
    private LocalDateTime createTime;
 
    /**
    * 修改人
    */
    @TableField(fill = FieldFill.INSERT_UPDATE)
    @Schema(description="修改人")
    private String updateBy;
 
    /**
    * 修改时间
    */
    @TableField(fill = FieldFill.INSERT_UPDATE)
    @Schema(description="修改时间")
    private LocalDateTime updateTime;
 
    /**
    * delFlag
    */
    @TableLogic
    @TableField(fill = FieldFill.INSERT)
    @Schema(description="delFlag")
    private String delFlag;
}