jiangqs
2023-07-18 79f8fc87c9c9e4866a477dfe4485eedda5976209
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.ruoyi.system.api.domain.dto;
 
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;
 
/**
 * @author jqs34
 * @ClassName AppMemberBindingDto
 * @description: TODO
 * @date 2023年05月06日
 * @version: 1.0
 */
@Data
public class AppMemberBindingDto extends AppBaseDto{
 
    @ApiModelProperty(value = "绑定标记")
    private Integer bindingFlag;
 
    @ApiModelProperty(value = "商户id")
    private Long shopId;
 
    @ApiModelProperty(value = "商户名称")
    private String shopName;
}