doum
20 小时以前 94e23fd6ad010b560fe4cc566db38082d7619696
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.doumee.dao.web.dto;
 
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
@Data
@ApiModel("经销商登录请求对象")
public class ShopLoginDTO {
 
    @ApiModelProperty(value = "关联用户主键")
    private Integer memberId;
 
    @ApiModelProperty(value = "openid")
    private String openid;
 
    @ApiModelProperty(value = "用户名称")
    private String userName;
 
    @ApiModelProperty(value = "密码")
    private String password;
 
}