com.alipay.api.domain.TechriskInnovateMpcpromoItemBatchqueryModel 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 com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 小程序云智能营销授权店铺商品查询
*
* @author auto create
* @since 1.0, 2023-09-21 23:23:52
*/
public class TechriskInnovateMpcpromoItemBatchqueryModel extends AlipayObject {
private static final long serialVersionUID = 8142535791477687243L;
/**
* 被授权小程序的appId
*/
@ApiField("auth_app_id")
private String authAppId;
/**
* 页数
*/
@ApiField("page_num")
private Long pageNum;
/**
* 每页的数量
*/
@ApiField("page_size")
private Long pageSize;
/**
* 店铺code
*/
@ApiField("shop_id")
private String shopId;
public String getAuthAppId() {
return this.authAppId;
}
public void setAuthAppId(String authAppId) {
this.authAppId = authAppId;
}
public Long getPageNum() {
return this.pageNum;
}
public void setPageNum(Long pageNum) {
this.pageNum = pageNum;
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public String getShopId() {
return this.shopId;
}
public void setShopId(String shopId) {
this.shopId = shopId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy