fuliqi
2024-01-09 ebb1a448339bafc4c4849fdbc2291bd3a28261df
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
package com.ycl.entity.equipment;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableField;
import com.baomidou.mybatisplus.annotation.TableId;
import com.baomidou.mybatisplus.annotation.TableName;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
import java.time.LocalDateTime;
 
 
/**
 * 手持终端
 *
 * @version V1.0
 * @author: AI
 * @date: 2022-10-31 14:55
 **/
@Data
@EqualsAndHashCode(callSuper = false)
@TableName("ums_equipment_handheld_terminal")
public class HandheldTerminal implements Serializable {
    /**
     * 主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Integer id;
 
    /**
     * 名称
     */
    @TableField("name")
    private String name;
 
    /**
     * 编号
     */
    @TableField("code")
    private String code;
 
    /**
     * 使用人
     */
    @TableField("user")
    private String user;
 
    /**
     * 联系方式
     */
    @TableField("phone")
    private String phone;
 
    /**
     * 部门id
     */
    @TableField("depart_id")
    private Long departId;
 
    /**
     * 状态1在线0离线
     */
    @TableField("state")
    private Short state;
 
    /**
     * 创建时间
     */
    @TableField("create_time")
    private LocalDateTime createTime;
}