来文函号报表页面提交
This commit is contained in:
43
src/main/java/com/nis/domain/log/NtcLwhhReportLog.java
Normal file
43
src/main/java/com/nis/domain/log/NtcLwhhReportLog.java
Normal file
@@ -0,0 +1,43 @@
|
||||
/**
|
||||
*@Title: NtcServiceReportLog.java
|
||||
*@Package com.nis.domain.log
|
||||
*@Description TODO
|
||||
*@author dell
|
||||
*@date 2018年7月9日 上午8:57:01
|
||||
*@version 版本号
|
||||
*/
|
||||
package com.nis.domain.log;
|
||||
|
||||
/**
|
||||
* @ClassName: NtcServiceReportLog.java
|
||||
* @Description: TODO
|
||||
* @author (dell)
|
||||
* @date 2018年7月9日 上午8:57:01
|
||||
* @version V1.0
|
||||
*/
|
||||
public class NtcLwhhReportLog extends BaseReportLog<NtcLwhhReportLog> {
|
||||
|
||||
/**
|
||||
* @Fields serialVersionUID:TODO(用一句话描述这个变量表示什么)
|
||||
*
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
||||
private static final long serialVersionUID = 2245672277797057001L;
|
||||
private Integer lwhh;
|
||||
/**
|
||||
* lwhh
|
||||
* @return lwhh
|
||||
*/
|
||||
|
||||
public Integer getLwhh() {
|
||||
return lwhh;
|
||||
}
|
||||
/**
|
||||
* @param lwhh the lwhh to set
|
||||
*/
|
||||
public void setLwhh(Integer lwhh) {
|
||||
this.lwhh = lwhh;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -44,7 +44,23 @@ public class SearchReport extends BaseEntity<SearchReport>{
|
||||
private Integer pageSize;
|
||||
private String orderBy;
|
||||
private String fields;
|
||||
//界面查询的时间
|
||||
private String reportTime;
|
||||
|
||||
/**
|
||||
* reportTime
|
||||
* @return reportTime
|
||||
*/
|
||||
|
||||
public String getReportTime() {
|
||||
return reportTime;
|
||||
}
|
||||
/**
|
||||
* @param reportTime the reportTime to set
|
||||
*/
|
||||
public void setReportTime(String reportTime) {
|
||||
this.reportTime = reportTime;
|
||||
}
|
||||
/**
|
||||
* pageNo
|
||||
* @return pageNo
|
||||
|
||||
Reference in New Issue
Block a user