package com.mzl.flower.dto.response.system; import com.mzl.flower.base.AbstractTransDTO; import io.swagger.annotations.ApiModelProperty; import lombok.Data; @Data public class UserListInfoDTO extends AbstractTransDTO { private String userId; private String id; @ApiModelProperty(value = "用户名") private String loginName; @ApiModelProperty(value = "手机号") private String tel; @ApiModelProperty(value = "类型") private String type; }