jiangqs
2023-05-06 43d9975c99cb947b4602f05bc2e513a20de92c38
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;
}