eleme.openapi.sdk.api.entity.invoice.ShopSettingsBatchUpdateRequest Maven / Gradle / Ivy
package eleme.openapi.sdk.api.entity.invoice;
import java.util.*;
public class ShopSettingsBatchUpdateRequest{
/**
* 店铺ID列表
*/
private List shopIdList;
public List getShopIdList() {
return shopIdList;
}
public void setShopIdList(List shopIdList) {
this.shopIdList = shopIdList;
}
/**
* 店铺销方开票设置
*/
private ShopSellerSettings settings;
public ShopSellerSettings getSettings() {
return settings;
}
public void setSettings(ShopSellerSettings settings) {
this.settings = settings;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy