View Javadoc
1   /**
2    * Copyright By Grandsoft Company Limited.  
3    * 2014年6月18日 上午11:05:32
4    */
5   package gboat2.example.vo;
6   
7   /**
8    * 
9    * @author <a href="mailto:[email protected]">何明旺</a>
10   * @since 3.0
11   * @date 2014年6月18日
12   */
13  public class Language {
14      private Integer id;
15      private String name;
16      private String memo;
17      public Language() {
18          
19      }
20      
21      public Language(Integer id, String name) {
22          super();
23          this.id = id;
24          this.name = name;
25      }
26      
27      public Language(Integer id, String name, String memo) {
28          super();
29          this.id = id;
30          this.name = name;
31          this.memo = memo;
32      }
33      
34      public Integer getId() {
35          return id;
36      }
37      public void setId(Integer id) {
38          this.id = id;
39      }
40      public String getName() {
41          return name;
42      }
43      public void setName(String name) {
44          this.name = name;
45      }
46      public String getMemo() {
47          return memo;
48      }
49      public void setMemo(String memo) {
50          this.memo = memo;
51      }
52  }