| | |
| | | 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; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | | import lombok.Data; |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | /** |
| | |
| | | */ |
| | | @Data |
| | | @ApiModel("劳务人员信息表") |
| | | public class MemberInfoDTO { |
| | | public class MemberInfoDTO implements Serializable { |
| | | |
| | | @ApiModelProperty(value = "主键") |
| | | private Integer id; |
| | |
| | | @ApiModelProperty(value = "微信openid") |
| | | private String openid; |
| | | |
| | | @ApiModelProperty(value = "门禁角色编码") |
| | | private Integer roleId; |
| | | |
| | | @ApiModelProperty(value = "门禁角色名称") |
| | | private String roleName; |
| | | |
| | | @ApiModelProperty(value = "是否可拜访人 0否 1是") |
| | | private String canVisit; |
| | | |
| | | |
| | | @ApiModelProperty(value = "卡片数") |
| | | private Integer memberCardCount; |
| | | |
| | | @ApiModelProperty(value = "培训有效期结束时间") |
| | | @JsonFormat(pattern = "yyyy-MM-dd") |
| | | private Date trainTimeEndTime; |
| | |
| | | @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; |
| | | |
| | | |
| | | } |