package com.yeshi.fanli.entity.admin;
|
|
public class ScanHistoryAdmin {
|
private String title;
|
private long counts;
|
|
public ScanHistoryAdmin() {
|
}
|
|
public ScanHistoryAdmin(String title, long counts) {
|
super();
|
this.title = title;
|
this.counts = counts;
|
}
|
|
public String getTitle() {
|
return title;
|
}
|
|
public void setTitle(String title) {
|
this.title = title;
|
}
|
|
public long getCounts() {
|
return counts;
|
}
|
|
public void setCounts(long counts) {
|
this.counts = counts;
|
}
|
}
|