zhangherong
2025-07-09 c800257cb6c8b45e7edc20e2e9018cd90b230806
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
package org.jeecg.modules.eam.entity;
 
import java.io.Serializable;
import java.io.UnsupportedEncodingException;
import java.util.Date;
import java.math.BigDecimal;
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import com.baomidou.mybatisplus.annotation.TableLogic;
import lombok.Data;
import com.fasterxml.jackson.annotation.JsonFormat;
import org.springframework.format.annotation.DateTimeFormat;
import org.jeecgframework.poi.excel.annotation.Excel;
import org.jeecg.common.aspect.annotation.Dict;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.EqualsAndHashCode;
import lombok.experimental.Accessors;
 
/**
 * @Description: eam_equipment_purchase_plan
 * @Author: jeecg-boot
 * @Date:   2025-06-18
 * @Version: V1.0
 */
@Data
@TableName("eam_equipment_purchase_plan")
@Accessors(chain = true)
@EqualsAndHashCode(callSuper = false)
@ApiModel(value="eam_equipment_purchase_plan对象", description="eam_equipment_purchase_plan")
public class EamEquipmentPurchasePlan implements Serializable {
    private static final long serialVersionUID = 1L;
 
    /**主键*/
    @TableId(type = IdType.ASSIGN_ID)
    @ApiModelProperty(value = "主键")
    private String id;
    /**采购计划名称*/
    @Excel(name = "采购计划名称", width = 20, orderNum = "2")
    @ApiModelProperty(value = "采购计划名称")
    private String planName;
    /**采购计划编码*/
    @Excel(name = "采购计划编码", width = 20, orderNum = "1")
    @ApiModelProperty(value = "采购计划编码")
    private String planCode;
    /**计划状态*/
    @Dict(dicCode = "equipment_purchase_plan_status")
    @Excel(name = "计划状态", width = 20, dicCode = "equipment_purchase_plan_status", orderNum = "3")
    @ApiModelProperty(value = "计划状态")
    private String planStatus;
    /**型号*/
    @Excel(name = "型号", width = 15, orderNum = "4")
    @ApiModelProperty(value = "型号")
    private String equipmentModel;
    /**采购数量*/
    @Excel(name = "采购数量", width = 15, orderNum = "5")
    @ApiModelProperty(value = "采购数量")
    private Integer purchaseNumber;
    /**预计单价*/
    @Excel(name = "预计单价", width = 15, orderNum = "6")
    @ApiModelProperty(value = "预计单价")
    private BigDecimal estimatedUnitPrice;
    /**总价*/
    @Excel(name = "总价", width = 15, orderNum = "7")
    @ApiModelProperty(value = "总价")
    private BigDecimal totalPrice;
    /**合同总金额*/
    @Excel(name = "合同总金额", width = 15, orderNum = "8")
    @ApiModelProperty(value = "合同总金额")
    private BigDecimal overallContractAmount;
    /**ABC标识(管理分类)*/
    @Excel(name = "管理分类", width = 10, orderNum = "9")
    @ApiModelProperty(value = "ABC标识(管理分类)")
    private String equipmentImportance;
    /**计划类别*/
    @ApiModelProperty(value = "计划类别")
    private String planCategory;
    /**申请人*/
    @Excel(name = "申请人", width = 15, orderNum = "10")
    @ApiModelProperty(value = "申请人")
    private String applicant;
    /**申请车间*/
    @Excel(name = "申请车间", width = 15, dictTable = "mdc_production", dicText = "production_name", dicCode = "id", orderNum = "11")
    @ApiModelProperty(value = "申请车间")
    @Dict(dictTable = "mdc_production", dicText = "production_name", dicCode = "id")
    private String applicantProduction;
    /**计划开始日期*/
    @Excel(name = "计划开始日期", width = 15, format = "yyyy/MM/dd HH", orderNum = "12")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH")
    @DateTimeFormat(pattern="yyyy-MM-dd HH")
    @ApiModelProperty(value = "计划开始日期")
    private Date planStartDate;
    /**计划完成日期*/
    @Excel(name = "计划完成日期", width = 15, format = "yyyy/MM/dd HH", orderNum = "13")
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH")
    @DateTimeFormat(pattern="yyyy-MM-dd HH")
    @ApiModelProperty(value = "计划完成日期")
    private Date planEndDate;
    /**计划描述*/
    @Excel(name = "计划描述", width = 50, orderNum = "14")
    @ApiModelProperty(value = "计划描述")
    private String planDescription;
    /**实施及协助部门*/
    @Excel(name = "实施及协助部门", width = 15, orderNum = "15")
    @ApiModelProperty(value = "实施及协助部门")
    private String relatedDeparts;
    /**备注*/
    @Excel(name = "备注", width = 50, orderNum = "16")
    @ApiModelProperty(value = "备注")
    private String remark;
    /**创建人*/
    @ApiModelProperty(value = "创建人")
    private String createBy;
    /**创建时间*/
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH")
    @DateTimeFormat(pattern="yyyy-MM-dd HH")
    @ApiModelProperty(value = "创建时间")
    private Date createTime;
    /**更新人*/
    @ApiModelProperty(value = "更新人")
    private String updateBy;
    /**更新时间*/
    @JsonFormat(timezone = "GMT+8",pattern = "yyyy-MM-dd HH")
    @DateTimeFormat(pattern="yyyy-MM-dd HH")
    @ApiModelProperty(value = "更新时间")
    private Date updateTime;
    /**删除标记*/
    @ApiModelProperty(value = "删除标记")
    @TableLogic
    private Integer delFlag;
}