| | |
| | | |
| | | /** 请求时间 */ |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | @Excel(name = "请求时间", width = 30, dateFormat = "yyyy-MM-dd") |
| | | @Excel(name = "请求时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss") |
| | | @TableField("req_time") |
| | | private Date reqTime; |
| | | private String reqTimeBegin; |
| | | private String reqTimeEnd; |
| | | |
| | | |
| | | /** 0上报取出1归还上报 */ |
| | |
| | | @TableField("operation") |
| | | private String operation; |
| | | |
| | | public void setReqTimeBegin(String reqTimeBegin) { |
| | | this.reqTimeBegin = reqTimeBegin==null? null :reqTimeBegin+ " 00:00:00"; |
| | | } |
| | | |
| | | public void setReqTimeEnd(String reqTimeEnd) { |
| | | this.reqTimeEnd = reqTimeEnd==null?null:reqTimeEnd+ " 23:59:59"; |
| | | } |
| | | } |