Commit 48d5526d8c38171b3cd908cd640b6f6b3025a586
1 parent
3e8964e5
修正计划调度模块操作日期实体,添加客户端信息相关字段
Showing
1 changed file
with
42 additions
and
0 deletions
src/main/java/com/bsth/entity/schedule/log/ModuleOperatorLog.java
| ... | ... | @@ -77,6 +77,16 @@ public class ModuleOperatorLog implements Serializable { |
| 77 | 77 | /** 备用-可选参数3 */ |
| 78 | 78 | private String optArg3; |
| 79 | 79 | |
| 80 | + //------------- 客户端信息 -------------// | |
| 81 | + /** 客户端Ip */ | |
| 82 | + private String clientIp; | |
| 83 | + /** 客户端游览器 */ | |
| 84 | + private String clientBowser; | |
| 85 | + /** 客户端主机信息 */ | |
| 86 | + private String clientSystem; | |
| 87 | + /** 获取mac地址 */ | |
| 88 | + private String clientMacAddress; | |
| 89 | + | |
| 80 | 90 | public Long getId() { |
| 81 | 91 | return id; |
| 82 | 92 | } |
| ... | ... | @@ -212,4 +222,36 @@ public class ModuleOperatorLog implements Serializable { |
| 212 | 222 | public void setOptArg3(String optArg3) { |
| 213 | 223 | this.optArg3 = optArg3; |
| 214 | 224 | } |
| 225 | + | |
| 226 | + public String getClientIp() { | |
| 227 | + return clientIp; | |
| 228 | + } | |
| 229 | + | |
| 230 | + public void setClientIp(String clientIp) { | |
| 231 | + this.clientIp = clientIp; | |
| 232 | + } | |
| 233 | + | |
| 234 | + public String getClientBowser() { | |
| 235 | + return clientBowser; | |
| 236 | + } | |
| 237 | + | |
| 238 | + public void setClientBowser(String clientBowser) { | |
| 239 | + this.clientBowser = clientBowser; | |
| 240 | + } | |
| 241 | + | |
| 242 | + public String getClientSystem() { | |
| 243 | + return clientSystem; | |
| 244 | + } | |
| 245 | + | |
| 246 | + public void setClientSystem(String clientSystem) { | |
| 247 | + this.clientSystem = clientSystem; | |
| 248 | + } | |
| 249 | + | |
| 250 | + public String getClientMacAddress() { | |
| 251 | + return clientMacAddress; | |
| 252 | + } | |
| 253 | + | |
| 254 | + public void setClientMacAddress(String clientMacAddress) { | |
| 255 | + this.clientMacAddress = clientMacAddress; | |
| 256 | + } | |
| 215 | 257 | } | ... | ... |