|
@@ -21,16 +21,21 @@ public class WelcomeVisitorVO implements Serializable {
|
|
|
|
|
|
|
|
@ApiModelProperty(value = "学生身份证号")
|
|
@ApiModelProperty(value = "学生身份证号")
|
|
|
@ExcelProperty("学生身份证号")
|
|
@ExcelProperty("学生身份证号")
|
|
|
|
|
+ @ExcelIgnore
|
|
|
private String studentCard;
|
|
private String studentCard;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "访客姓名")
|
|
|
|
|
- @ExcelProperty("访客姓名")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "学生姓名")
|
|
|
|
|
+ @ExcelProperty("学生姓名")
|
|
|
private String name;
|
|
private String name;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "访客手机号")
|
|
|
|
|
- @ExcelProperty("访客手机号")
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "手机号")
|
|
|
|
|
+ @ExcelProperty("手机号")
|
|
|
private String phone;
|
|
private String phone;
|
|
|
|
|
|
|
|
|
|
+ @ApiModelProperty(value = "访问事由")
|
|
|
|
|
+ @ExcelProperty("访问事由")
|
|
|
|
|
+ private String visitorReason;
|
|
|
|
|
+
|
|
|
@ApiModelProperty(value = "校区id")
|
|
@ApiModelProperty(value = "校区id")
|
|
|
@ExcelIgnore
|
|
@ExcelIgnore
|
|
|
private String schoolId;
|
|
private String schoolId;
|
|
@@ -55,15 +60,12 @@ public class WelcomeVisitorVO implements Serializable {
|
|
|
@ExcelProperty("同行人数")
|
|
@ExcelProperty("同行人数")
|
|
|
private Integer peerNum;
|
|
private Integer peerNum;
|
|
|
|
|
|
|
|
- @ApiModelProperty(value = "创建时间")
|
|
|
|
|
- @ExcelProperty("创建时间")
|
|
|
|
|
- private Date createTime;
|
|
|
|
|
-
|
|
|
|
|
- @ApiModelProperty(value = "访问事由")
|
|
|
|
|
- @ExcelProperty("访问事由")
|
|
|
|
|
- private String visitorReason;
|
|
|
|
|
-
|
|
|
|
|
@ApiModelProperty(value = "备注")
|
|
@ApiModelProperty(value = "备注")
|
|
|
@ExcelProperty("备注")
|
|
@ExcelProperty("备注")
|
|
|
private String remark;
|
|
private String remark;
|
|
|
|
|
+
|
|
|
|
|
+ @ApiModelProperty(value = "创建时间")
|
|
|
|
|
+ @ExcelProperty("创建时间")
|
|
|
|
|
+ @ExcelIgnore
|
|
|
|
|
+ private Date createTime;
|
|
|
}
|
|
}
|