com.alipay.api.domain.MemberCardPayEffectiveShopRule Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 会员卡核销有效线下店范围
*
* @author auto create
* @since 1.0, 2022-10-31 21:54:41
*/
public class MemberCardPayEffectiveShopRule extends AlipayObject {
private static final long serialVersionUID = 7716357837619814833L;
/**
* 线下店id列表,列表最大长度5000
*/
@ApiListField("shop_ids")
@ApiField("string")
private List shopIds;
/**
* 商家id
*/
@ApiField("user_id")
private String userId;
public List getShopIds() {
return this.shopIds;
}
public void setShopIds(List shopIds) {
this.shopIds = shopIds;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy