MrShi
2026-03-06 cdca21c0c12fa79ad4e85321d0f0960c0c4c3f33
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;
 
}