BrightSide Workbench Full Report + Source Code
TouchSystem.java
Go to the documentation of this file.
1 package org.turro.crm.entity;
2 
3 import javax.persistence.*;
4 
9 @Entity
10 public class TouchSystem implements java.io.Serializable {
11 
12  @Id
13  @GeneratedValue(strategy=GenerationType.IDENTITY)
14  @Column(name="IDENTIFIER")
15  private long id;
16 
17  private String name;
18 
19  private int touchDegree;
20 
21  public long getId() {
22  return id;
23  }
24 
25  public void setId(long id) {
26  this.id = id;
27  }
28 
29  public String getName() {
30  return name;
31  }
32 
33  public void setName(String name) {
34  this.name = name;
35  }
36 
37  public int getTouchDegree() {
38  return touchDegree;
39  }
40 
41  public void setTouchDegree(int touchDegree) {
42  this.touchDegree = touchDegree;
43  }
44 
45 }
void setTouchDegree(int touchDegree)