com.alipay.api.domain.KoubeiMerchantDepartmentShopModifyModel 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-06-17 16:46:50
*/
public class KoubeiMerchantDepartmentShopModifyModel extends AlipayObject {
private static final long serialVersionUID = 1322533664556885355L;
/**
* isv回传的auth_code,通过auth_code校验当前操作人与商户的关系
*/
@ApiField("auth_code")
private String authCode;
/**
* 需要调整的部门id
*/
@ApiField("dept_id")
private String deptId;
/**
* 部门类型,5为非叶子节点部门即商户创建的部门;6为叶子节点部门即门店,门店在业务上被当成是类型为6的部门
*/
@ApiField("dept_type")
private String deptType;
/**
* 商户调整部门,门店关系时当前部门需要新增的门店列表,包括门店id和门店名称
*/
@ApiListField("shop_list_to_add")
@ApiField("simple_shop_model")
private List shopListToAdd;
/**
* 商户调整部门,门店关联关系,需要解除关系的门店列表,包括门店id和门店名称
*/
@ApiListField("shop_list_to_remove")
@ApiField("simple_shop_model")
private List shopListToRemove;
public String getAuthCode() {
return this.authCode;
}
public void setAuthCode(String authCode) {
this.authCode = authCode;
}
public String getDeptId() {
return this.deptId;
}
public void setDeptId(String deptId) {
this.deptId = deptId;
}
public String getDeptType() {
return this.deptType;
}
public void setDeptType(String deptType) {
this.deptType = deptType;
}
public List getShopListToAdd() {
return this.shopListToAdd;
}
public void setShopListToAdd(List shopListToAdd) {
this.shopListToAdd = shopListToAdd;
}
public List getShopListToRemove() {
return this.shopListToRemove;
}
public void setShopListToRemove(List shopListToRemove) {
this.shopListToRemove = shopListToRemove;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy