| | |
| | | import cn.lili.common.security.sensitive.Sensitive; |
| | | import cn.lili.common.security.sensitive.enums.SensitiveStrategy; |
| | | import cn.lili.common.utils.BeanUtil; |
| | | import cn.lili.modules.lmk.domain.vo.CustomerTagVO; |
| | | import cn.lili.modules.member.entity.dos.Member; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | import io.swagger.annotations.ApiModelProperty; |
| | |
| | | |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | /** |
| | | * @author paulG |
| | |
| | | @ApiModelProperty(value = "创建时间", hidden = true) |
| | | private Date createTime; |
| | | |
| | | @ApiModelProperty(value = "客户标签列表") |
| | | private List<CustomerTagVO> customerTagList; |
| | | |
| | | /** |
| | | * 为null则不在黑名单内 |
| | | */ |
| | | @ApiModelProperty(value = "黑名单id") |
| | | private String blackId; |
| | | |
| | | public MemberVO(Member member) { |
| | | BeanUtil.copyProperties(member, this); |
| | | } |