Line2System.java
906 Bytes
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
package com.bsth.entity;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.Table;
/**
* 线路映射到某个系统(新老系统并行时需要这个对照)
* Created by panzhao on 2017/3/14.
*/
@Entity
@Table(name = "interface_line_system_mapp")
public class Line2System {
@Id
private String lineCode;
private String lineName;
/**
* 是否从新系统接入数据
*/
private boolean isNew;
public String getLineCode() {
return lineCode;
}
public void setLineCode(String lineCode) {
this.lineCode = lineCode;
}
public boolean isNew() {
return isNew;
}
public void setNew(boolean aNew) {
isNew = aNew;
}
public String getLineName() {
return lineName;
}
public void setLineName(String lineName) {
this.lineName = lineName;
}
}