导出去掉敏感数据

This commit is contained in:
cwchen 2024-09-13 13:19:31 +08:00
parent 5660dd3fde
commit 74363954f6
1 changed files with 3 additions and 3 deletions

View File

@ -46,12 +46,12 @@ public class AccessMgesVo {
@Excel(name = "姓名", width = 10.0, orderNum = "2")
private String userName;
@ApiModelProperty(value = "司机电话")
@Excel(name = "电话", width = 10.0, orderNum = "3")
// @Excel(name = "电话", width = 10.0, orderNum = "3")
private String phone;
@ApiModelProperty(value = "状态")
@Excel(name = "状态", width = 10.0, orderNum = "4")
@Excel(name = "状态", width = 10.0, orderNum = "3")
private String accessType;
@ApiModelProperty(value = "时间")
@Excel(name = "时间", width = 10.0, orderNum = "5")
@Excel(name = "时间", width = 10.0, orderNum = "4")
private String accesssTime;
}