puzhibing
2023-10-08 22199bbdda579861736420fe26c2873ab0f5d21c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
package com.sinata.rest.modular.mall.controller.vo;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * <p>
 * 账号状态
 * </p>
 *
 * @ClassName com.sinata.rest.modular.mall.controller.vo.VoUserAccountState
 * @Description 账号状态
 * @Author sl
 * @Date 2023/3/16 14:23
 */
@Data
@ApiModel("账号状态")
public class VoUserAccountState {
 
    @ApiModelProperty("0不存在 1存在")
    private Integer state = 0;
 
}