package com.artfess.uc.vo;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class zsUserVO {

    @ApiModelProperty(value = "主键ID")
    String id;

    @ApiModelProperty(value = "用户编码")
    String userCode;

    @ApiModelProperty(value = "用户名称")
    String name;

    @ApiModelProperty(value = "用户手机号")
    String phone;

    @ApiModelProperty(value = "组织编码")
    String orgCode;

    @ApiModelProperty(value = "用户状态")
    Integer status;
}
