| | |
| | | @Excel(name = "操作地址")
|
| | | private String operIp;
|
| | |
|
| | | /** 操作地点 */
|
| | | @Excel(name = "操作地点")
|
| | | private String operLocation;
|
| | |
|
| | | /** 请求参数 */
|
| | | @Excel(name = "请求参数")
|
| | | private String operParam;
|
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
| | | @Excel(name = "操作时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm:ss")
|
| | | private Date operTime;
|
| | |
|
| | | /** 消耗时间 */
|
| | | @Excel(name = "消耗时间", suffix = "毫秒")
|
| | | private Long costTime;
|
| | |
|
| | | public Long getOperId()
|
| | | {
|
| | |
| | | this.operIp = operIp;
|
| | | }
|
| | |
|
| | | public String getOperLocation()
|
| | | {
|
| | | return operLocation;
|
| | | }
|
| | |
|
| | | public void setOperLocation(String operLocation)
|
| | | {
|
| | | this.operLocation = operLocation;
|
| | | }
|
| | |
|
| | | public String getOperParam()
|
| | | {
|
| | | return operParam;
|
| | |
| | | {
|
| | | this.operTime = operTime;
|
| | | }
|
| | |
|
| | | public Long getCostTime()
|
| | | {
|
| | | return costTime;
|
| | | }
|
| | |
|
| | | public void setCostTime(Long costTime)
|
| | | {
|
| | | this.costTime = costTime;
|
| | | }
|
| | | }
|