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

修改

parent ad0b7117
......@@ -100,6 +100,10 @@ public class OrderTourDetail implements Serializable {
@ApiModelProperty(value = "具体商品(商品项)id")
private Integer spePriceId;
@Column(name = "verification_id")
@ApiModelProperty(value = "核销id")
private Integer verificationId;
//联系人
@Column(name = "contact_man")
@ApiModelProperty(value = "联系人")
......
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