zss
9 天以前 51ec98113c6d49d0f7eec4e3c030e55e337e97db
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
package com.yuanchu.mom.pojo;
 
import com.baomidou.mybatisplus.annotation.*;
import lombok.Getter;
import lombok.Setter;
import org.springframework.format.annotation.DateTimeFormat;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
/**
 * <p>
 * 资源预定新建预定表
 * </p>
 *
 * @author baomidou
 * @since 2024-09-14
 */
@Getter
@Setter
@TableName("device_reservation")
public class Reservation implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     *  设备id
     */
    private Integer deviceId;
 
    /**
     * 预定设备
     */
    private String deviceName;
 
    /**
     *  客户名称
     */
    private String customerName;
 
    /**
     *  预定时间
     */
 
    private String reservationTime;
 
    /**
     *  具体时间
     */
    private String specificTime;
 
 
 
    /**
     * 联系人
     */
    private String linkPerson;
 
    /**
     *  联系电话
     */
    private String phone;
 
    /**
     *  流程编号
     */
    private String deviceNumber;
 
    /**
     *  预定说明
     */
    private String reservationSpecification;
 
    /**
     * 创建人
     */
    @TableField(fill = FieldFill.INSERT)
    private Integer createUser;
    @DateTimeFormat(pattern = "yyyy-MM-dd")
    private LocalDateTime createDate;
}