|
@@ -1,5 +1,6 @@
|
|
|
package com.qmth.themis.business.bean.admin;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import io.swagger.annotations.ApiModel;
|
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
|
|
|
@@ -16,7 +17,84 @@ public class ExamStudentLogDetailListBean {
|
|
|
@ApiModelProperty(name = "详情")
|
|
|
private String remark;
|
|
|
|
|
|
- public Long getCreateTime() {
|
|
|
+ @ApiModelProperty(value = "ip地址")
|
|
|
+ private String ip;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "国家")
|
|
|
+ private String country;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "地区")
|
|
|
+ private String region;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "省份")
|
|
|
+ private String province;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "城市")
|
|
|
+ private String city;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "运营商")
|
|
|
+ private String isp;
|
|
|
+
|
|
|
+ @ApiModelProperty(value = "ip是否改变")
|
|
|
+ private Boolean ipChange;
|
|
|
+
|
|
|
+ public String getIp() {
|
|
|
+ return ip;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIp(String ip) {
|
|
|
+ this.ip = ip;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCountry() {
|
|
|
+ return country;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCountry(String country) {
|
|
|
+ this.country = country;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getRegion() {
|
|
|
+ return region;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setRegion(String region) {
|
|
|
+ this.region = region;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getProvince() {
|
|
|
+ return province;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setProvince(String province) {
|
|
|
+ this.province = province;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getCity() {
|
|
|
+ return city;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setCity(String city) {
|
|
|
+ this.city = city;
|
|
|
+ }
|
|
|
+
|
|
|
+ public String getIsp() {
|
|
|
+ return isp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIsp(String isp) {
|
|
|
+ this.isp = isp;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Boolean getIpChange() {
|
|
|
+ return ipChange;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setIpChange(Boolean ipChange) {
|
|
|
+ this.ipChange = ipChange;
|
|
|
+ }
|
|
|
+
|
|
|
+ public Long getCreateTime() {
|
|
|
return createTime;
|
|
|
}
|
|
|
|