严智鑫
2025-11-13 945bc394f40d8af1072a53da9a94f24207124e6d
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
package com.northglass.entity;
 
import javax.persistence.Entity;
import javax.persistence.Transient;
 
import com.northglass.listener.ServerConnection;
 
@Entity
public class DummyTime extends IdEntity {
 
    private String number;//落架排序
    private double  time;//时间
    private String sort;    //切割顺序
    private String total;//峰值
    
    public DummyTime(String number,double time,String sort,String total){
        this.number = number;
        this.time = time;
        this.sort = sort;
        this.total = total;
    }
    
    public DummyTime(){
    }
    
    private ServerConnection serverConnection = new ServerConnection();
    
  
 
    public String getNumber() {
        return number;
    }
 
    public void setNumber(String number) {
        this.number = number;
    }
 
    public String getTotal() {
        return total;
    }
 
    public void setTotal(String total) {
        this.total = total;
    }
 
    public double getTime() {
        return time;
    }
 
    public void setTime(double time) {
        this.time = time;
    }
 
    public String getSort() {
        return sort;
    }
 
    public void setSort(String sort) {
        this.sort = sort;
    }
 
    @Transient
    public ServerConnection getServerConnection() {
        return serverConnection;
    }
 
    public void setServerConnection(ServerConnection serverConnection) {
        this.serverConnection = serverConnection;
    }
}