kongdeqiang
2025-03-13 802849a7552d2d51312188c83b91d769fd43b1c1
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
package com.by4cloud.platformx.device.entity;
 
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.Data;
import org.hibernate.annotations.Table;
 
import javax.persistence.Column;
import javax.persistence.Entity;
 
/**
 * @author kdq
 * @version 1.0.0
 * @ClassName DeviceDemandTotal.java
 * @Description TODO
 * @createTime 2025年03月04日 14:56:00
 */
@Data
@Entity
@Table(appliesTo = "device_demand_total", comment = "设备需求计划项目子表")
public class DeviceDemandTotal extends DeviceBaseModel<DeviceDemandTotal>{
    @Schema(description = "需求计划id")
    @Column(columnDefinition="int comment '需求计划id'")
    private Integer planId;
    @Schema(description = "拟使用地点")
    @Column(columnDefinition="VARCHAR(64) comment '拟使用地点'")
    private String place;
    @Schema(description = "申请部门")
    @Column(columnDefinition="int comment '申请部门'")
    private Integer deptId;
    @Schema(description = "建议厂家")
    @Column(columnDefinition="VARCHAR(64) comment '建议厂家'")
    private String manu;
    @Schema(description = "投资必要性")
    @Column(columnDefinition="VARCHAR(64) comment '投资必要性'")
    private String necessity;
}