Blame view

src/main/java/com/objecteye/entity/PersonnelResultMsg.java 2.24 KB
c83b5b39   Liu Haoyu   项目创建, 集成spring-se...
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
  package com.objecteye.entity;
  
  import java.io.Serializable;
  
  public class PersonnelResultMsg implements Serializable {
  
  
      private int personId;
      private String personName;
      private String createTime;
      private String conreason;
      private int personfileNum;
      private String imageUrl;
      private String indentity;
  
      public PersonnelResultMsg() {
      }
  
      public PersonnelResultMsg(int personId, String personName, String createTime, String conreason, int personfileNum, String imageUrl) {
          this.personId = personId;
          this.personName = personName;
          this.createTime = createTime;
          this.conreason = conreason;
          this.personfileNum = personfileNum;
          this.imageUrl = imageUrl;
      }
  
  
      public int getPersonId() {
          return personId;
      }
  
      public void setPersonId(int personId) {
          this.personId = personId;
      }
  
      public PersonnelResultMsg(int personId, String personName, String createTime, String conreason, int personfileNum, String imageUrl, String indentity) {
          this.personId = personId;
          this.personName = personName;
          this.createTime = createTime;
          this.conreason = conreason;
          this.personfileNum = personfileNum;
          this.imageUrl = imageUrl;
          this.indentity = indentity;
      }
  
      public String getPersonName() {
          return personName;
      }
  
      public void setPersonName(String personName) {
          this.personName = personName;
      }
  
      public String getCreateTime() {
          return createTime;
      }
  
      public void setCreateTime(String createTime) {
          this.createTime = createTime;
      }
  
      public String getConreason() {
          return conreason;
      }
  
      public void setConreason(String conreason) {
          this.conreason = conreason;
      }
  
      public int getPersonfileNum() {
          return personfileNum;
      }
  
      public void setPersonfileNum(int personfileNum) {
          this.personfileNum = personfileNum;
      }
  
      public String getImageUrl() {
          return imageUrl;
      }
  
      public void setImageUrl(String imageUrl) {
          this.imageUrl = imageUrl;
      }
  
      public String getIndentity() {
          return indentity;
      }
  
      public void setIndentity(String indentity) {
          this.indentity = indentity;
      }
  }