Blame view

C5/other/com/sunvote/xpadapp/bean/Candidates.java 1.3 KB
fac86401   孙向锦   初始化C5 Vote
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
  package com.sunvote.xpadapp.bean;
  
  /**
   * Created by Elvis on 2017/12/5 10:09
   * Email:Eluis@psunsky.com
   * 版权所有:长沙中天电子设计开发有限公司
   * Description: 人大通用版XPadAppRD重构
   * 对应数据库表格Candidates表格,字段含义
   */
  public class Candidates extends VoteState{
  
      private int billID;
      private int candidateNo;
      private String candidateName;
      private String candidateMemo;
      private String candidateFile;
  
      public int getBillID() {
          return billID;
      }
  
      public void setBillID(int billID) {
          this.billID = billID;
      }
  
      public int getCandidateNo() {
          return candidateNo;
      }
  
      public void setCandidateNo(int candidateNo) {
          this.candidateNo = candidateNo;
      }
  
      public String getCandidateName() {
          return candidateName;
      }
  
      public void setCandidateName(String candidateName) {
          this.candidateName = candidateName;
      }
  
      public String getCandidateMemo() {
          return candidateMemo;
      }
  
      public void setCandidateMemo(String candidateMemo) {
          this.candidateMemo = candidateMemo;
      }
  
      public String getCandidateFile() {
          return candidateFile;
      }
  
      public void setCandidateFile(String candidateFile) {
          this.candidateFile = candidateFile;
      }
  }