eleme.openapi.sdk.api.entity.enterprise.ShopEnableDetail Maven / Gradle / Ivy
package eleme.openapi.sdk.api.entity.enterprise;
public class ShopEnableDetail {
/**
* 店铺id
*/
private Long shopId;
public Long getShopId() {
return shopId;
}
public void setShopId(Long shopId) {
this.shopId = shopId;
}
/**
* 店铺名称
*/
private String shopName;
public String getShopName() {
return shopName;
}
public void setShopName(String shopName) {
this.shopName = shopName;
}
/**
* 启用状态,1-启用,0-停用
*/
private Integer enableStatus;
public Integer getEnableStatus() {
return enableStatus;
}
public void setEnableStatus(Integer enableStatus) {
this.enableStatus = enableStatus;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy