Commit d31ad520 authored by 周健威's avatar 周健威

修改

parent ad0b7117
...@@ -99,6 +99,10 @@ public class OrderTourDetail implements Serializable { ...@@ -99,6 +99,10 @@ public class OrderTourDetail implements Serializable {
@Column(name = "spe_price_id") @Column(name = "spe_price_id")
@ApiModelProperty(value = "具体商品(商品项)id") @ApiModelProperty(value = "具体商品(商品项)id")
private Integer spePriceId; private Integer spePriceId;
@Column(name = "verification_id")
@ApiModelProperty(value = "核销id")
private Integer verificationId;
//联系人 //联系人
@Column(name = "contact_man") @Column(name = "contact_man")
......
package com.xxfc.platform.order.config;
import com.github.wxiaoqi.security.common.exception.BaseException;
import com.github.wxiaoqi.security.common.msg.BaseResponse;
import org.springframework.web.bind.annotation.ExceptionHandler;
import org.springframework.web.bind.annotation.RestControllerAdvice;
@RestControllerAdvice
public class PlatformExceptionHandler {
@ExceptionHandler(BaseException.class)
public BaseResponse baseExceptionHandler(BaseException e) {
return new BaseResponse(e.getStatus(), e.getMessage());
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment