103 lines
1.9 KiB
Java
103 lines
1.9 KiB
Java
|
|
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;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|