| | |
| | | package com.doumee.dao.admin.response; |
| | | |
| | | import com.baomidou.mybatisplus.annotation.TableField; |
| | | import com.doumee.core.annotation.excel.ExcelColumn; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModel; |
| | |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date empowerEndTime; |
| | | |
| | | @ApiModelProperty(value = "拜访次数") |
| | | @TableField(exist = false) |
| | | private Integer visitsCount; |
| | | |
| | | @ApiModelProperty(value = "最后访客时间") |
| | | @TableField(exist = false) |
| | | private Date visitsLastDate; |
| | | |
| | | @ApiModelProperty(value = "最后冻结时间") |
| | | @TableField(exist = false) |
| | | private Date userActionType1; |
| | | |
| | | |
| | | } |