新首页(齿轮图)相关代码
This commit is contained in:
102
src/main/java/com/nis/domain/log/WelcomePageEntity.java
Normal file
102
src/main/java/com/nis/domain/log/WelcomePageEntity.java
Normal file
@@ -0,0 +1,102 @@
|
||||
package com.nis.domain.log;
|
||||
|
||||
import java.io.Serializable;
|
||||
|
||||
public class WelcomePageEntity implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 6552094121080746662L;
|
||||
|
||||
private Integer entranceId;
|
||||
private String area;
|
||||
private Long sum;
|
||||
private String reportTime;
|
||||
|
||||
private Long serviceCode;
|
||||
private String serviceNameZh;
|
||||
private String serviceNameEn;
|
||||
private String serviceNameRu;
|
||||
|
||||
private String label;
|
||||
private String action;
|
||||
|
||||
public Integer getEntranceId() {
|
||||
return entranceId;
|
||||
}
|
||||
|
||||
public void setEntranceId(Integer entranceId) {
|
||||
this.entranceId = entranceId;
|
||||
}
|
||||
|
||||
public String getAction() {
|
||||
return action;
|
||||
}
|
||||
|
||||
public void setAction(String action) {
|
||||
this.action = action;
|
||||
}
|
||||
|
||||
public String getServiceNameZh() {
|
||||
return serviceNameZh;
|
||||
}
|
||||
|
||||
public void setServiceNameZh(String serviceNameZh) {
|
||||
this.serviceNameZh = serviceNameZh;
|
||||
}
|
||||
|
||||
public String getServiceNameEn() {
|
||||
return serviceNameEn;
|
||||
}
|
||||
|
||||
public void setServiceNameEn(String serviceNameEn) {
|
||||
this.serviceNameEn = serviceNameEn;
|
||||
}
|
||||
|
||||
public String getServiceNameRu() {
|
||||
return serviceNameRu;
|
||||
}
|
||||
|
||||
public void setServiceNameRu(String serviceNameRu) {
|
||||
this.serviceNameRu = serviceNameRu;
|
||||
}
|
||||
|
||||
public String getArea() {
|
||||
return area;
|
||||
}
|
||||
|
||||
public void setArea(String area) {
|
||||
this.area = area;
|
||||
}
|
||||
|
||||
public Long getSum() {
|
||||
return sum;
|
||||
}
|
||||
|
||||
public void setSum(Long sum) {
|
||||
this.sum = sum;
|
||||
}
|
||||
|
||||
public String getReportTime() {
|
||||
return reportTime;
|
||||
}
|
||||
|
||||
public void setReportTime(String reportTime) {
|
||||
this.reportTime = reportTime;
|
||||
}
|
||||
|
||||
public Long getServiceCode() {
|
||||
return serviceCode;
|
||||
}
|
||||
|
||||
public void setServiceCode(Long serviceCode) {
|
||||
this.serviceCode = serviceCode;
|
||||
}
|
||||
|
||||
public String getLabel() {
|
||||
return label;
|
||||
}
|
||||
|
||||
public void setLabel(String label) {
|
||||
this.label = label;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user