eleme.openapi.sdk.api.entity.product.OMenuSyncPreCheckResult Maven / Gradle / Ivy
package eleme.openapi.sdk.api.entity.product;
import eleme.openapi.sdk.api.enumeration.product.*;
import eleme.openapi.sdk.api.entity.product.*;
import java.util.*;
import java.math.BigDecimal;
import com.fasterxml.jackson.annotation.JsonFormat;
public class OMenuSyncPreCheckResult{
/**
* 店铺id
*/
private Long targetShopId;
public Long getTargetShopId() {
return targetShopId;
}
public void setTargetShopId(Long targetShopId) {
this.targetShopId = targetShopId;
}
/**
* 校验是否通过
*/
private Boolean checkPass;
public Boolean getCheckPass() {
return checkPass;
}
public void setCheckPass(Boolean checkPass) {
this.checkPass = checkPass;
}
/**
* 校验结果说明
*/
private String comment;
public String getComment() {
return comment;
}
public void setComment(String comment) {
this.comment = comment;
}
/**
* 校验结果详情
*/
private List checkResultDetails;
public List getCheckResultDetails() {
return checkResultDetails;
}
public void setCheckResultDetails(List checkResultDetails) {
this.checkResultDetails = checkResultDetails;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy