You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
557 B
25 lines
557 B
package com.zsw.model; |
|
|
|
|
|
import io.swagger.annotations.ApiModel; |
|
import io.swagger.annotations.ApiModelProperty; |
|
import lombok.Data; |
|
import lombok.ToString; |
|
|
|
import java.util.List; |
|
|
|
@Data |
|
@ApiModel(description = "商户认证信息") |
|
@ToString(callSuper = true) |
|
public class TenantAuthInfo extends AuthInfo { |
|
|
|
@ApiModelProperty(value = "商户编码") |
|
private String tenantCode; |
|
|
|
@ApiModelProperty("是否是商户管理员") |
|
private Boolean isAdmin = false; |
|
|
|
@ApiModelProperty("店铺列表") |
|
private List<AuthStore> storeList; |
|
|
|
}
|
|
|