shiyunteng
2025-03-24 ffae43733ed6656d61ca5e129883eb738a93f9f6
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 io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import lombok.EqualsAndHashCode;
import java.time.LocalDateTime;
 
/**
 * 招标采购单
 *
 * @author pig
 * @date 2025-03-24 15:45:03
 */
@Data
@TableName("purchase_tendr_order")
@EqualsAndHashCode(callSuper = true)
@Schema(description = "招标采购单")
public class PurchaseTendrOrderEntity extends Model<PurchaseTendrOrderEntity> {
 
 
    /**
    * id
    */
    @TableId(type = IdType.ASSIGN_ID)
    @Schema(description="id")
    private Long id;
 
    /**
    * 采购计划编号
    */
    @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 estimatePrice;
 
    /**
    * 计划总额   /分
    */
    @Schema(description="计划总额   /分")
    private Integer totalPlanndAmount;
 
    /**
    * 拟使用地点
    */
    @Schema(description="拟使用地点")
    private String locationUsed;
 
    /**
    * 状态
    */
    @Schema(description="状态")
    private String status;
 
    /**
    * 申请人
    */
    @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;
}