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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
package com.objecteye.entity;
import io.swagger.annotations.ApiModelProperty;
import java.io.Serializable;
public class SyFeature implements Serializable {
@ApiModelProperty(value = "自增主键")
private Integer id;
@ApiModelProperty(value = "人像库名")
private String name;
@ApiModelProperty(value = "人像库描述")
private String description;
@ApiModelProperty(value = "人像的数量")
private Integer count;
@ApiModelProperty(value = "逻辑删除(0存在1删除)")
private Integer isDelete;
@ApiModelProperty(value = "创建时间")
private String createDate;
@ApiModelProperty(value = "更新时间")
private String updateDate;
@ApiModelProperty(value = "是否是单人布控")
private Integer isSingle;
private static final long serialVersionUID = 1L;
public Integer getId() {
return id;
}
public void setId(Integer id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getCount() {
return count;
}
public void setCount(Integer count) {
this.count = count;
}
public Integer getIsDelete() {
return isDelete;
}
public void setIsDelete(Integer isDelete) {
this.isDelete = isDelete;
}
public String getCreateDate() {
return createDate;
}
public void setCreateDate(String createDate) {
this.createDate = createDate;
}
public String getUpdateDate() {
return updateDate;
}
public void setUpdateDate(String updateDate) {
this.updateDate = updateDate;
}
public Integer getIsSingle() {
return isSingle;
}
public void setIsSingle(Integer isSingle) {
this.isSingle = isSingle;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append(getClass().getSimpleName());
sb.append(" [");
sb.append("Hash = ").append(hashCode());
sb.append(", id=").append(id);
sb.append(", name=").append(name);
sb.append(", description=").append(description);
sb.append(", count=").append(count);
sb.append(", isDelete=").append(isDelete);
sb.append(", createDate=").append(createDate);
sb.append(", updateDate=").append(updateDate);
sb.append(", isSingle=").append(isSingle);
sb.append(", serialVersionUID=").append(serialVersionUID);
sb.append("]");
return sb.toString();
}
}
|