eleme.openapi.sdk.api.entity.shop.SyncShopAiRecognitionDTO Maven / Gradle / Ivy
The newest version!
package eleme.openapi.sdk.api.entity.shop;
import eleme.openapi.sdk.api.enumeration.shop.*;
import eleme.openapi.sdk.api.entity.shop.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;
public class SyncShopAiRecognitionDTO{
/**
* 是否匹配店铺
*/
private boolean matchShop;
public boolean getMatchShop() {
return matchShop;
}
public void setMatchShop(boolean matchShop) {
this.matchShop = matchShop;
}
/**
* 错误码
*/
private String errorCode;
public String getErrorCode() {
return errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
/**
* 错误信息
*/
private String errorMsg;
public String getErrorMsg() {
return errorMsg;
}
public void setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy