严智鑫
2025-03-11 67cbfd8f7c2ed9598eef92470313f3cf31028ea1
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
package com.mes.md.entity;
 
import com.baomidou.mybatisplus.annotation.IdType;
import com.baomidou.mybatisplus.annotation.TableId;
import lombok.Data;
import lombok.EqualsAndHashCode;
 
import java.io.Serializable;
 
/**
 * <p>
 * 设备表
 * </p>
 *
 * @author yanzhixin
 * @since 2024-09-12
 */
@Data
@EqualsAndHashCode(callSuper = false)
public class Machine implements Serializable {
 
    private static final long serialVersionUID = 1L;
 
    /**
     * 设备主键
     */
    @TableId(value = "id", type = IdType.AUTO)
    private Long id;
 
    /**
     * 设备名称
     */
    private String name;
    /**
     * 协议文件名称
     */
    private String fileName;
 
    /**
     * 设备IP
     */
    private String ip;
 
    /**
     * 端口号
     */
    private int port;
 
    /**
     * 状态
     */
    private String state;
 
    /**
     * 设备模式
     */
    private int mode;
 
    /**
     * 最大工作任务数
     */
    private int maxTaskCount;
 
    /**
     * 备注
     */
    private String remark;
    /**
     * 是否输出参数日志
     */
    private int isLog;
 
    /**
     * 今日工作次数
     */
    private Integer todayCount;
 
    /**
     * 开机状态
     */
    private String statePowerOn;
 
    /**
     * 联机状态
     */
    private String stateOnLine;
 
    /**
     * 手动任务数量
     */
    private int taskCount;
 
    /**
     * 手动任务完成数量
     */
    private int finshCount;
 
    /**
     * 旋转模式   1 旋转  2 不旋转
     */
    private int rotateMode;
 
    /**
     *
     */
 
 
 
}