编译问题
This commit is contained in:
parent
43ebd8c5ee
commit
af1868c2c5
|
|
@ -3,16 +3,12 @@ import com.bonus.core.allocation.api.AllocMetadataApi;
|
||||||
import com.bonus.core.auth.mobile.alipay.service.AliPayService;
|
import com.bonus.core.auth.mobile.alipay.service.AliPayService;
|
||||||
import com.bonus.core.common.thirdutils.alipay.AliPayUtil;
|
import com.bonus.core.common.thirdutils.alipay.AliPayUtil;
|
||||||
import com.bonus.core.common.thirdutils.alipay.model.AlipayReq;
|
import com.bonus.core.common.thirdutils.alipay.model.AlipayReq;
|
||||||
import com.sun.org.slf4j.internal.Logger;
|
|
||||||
import com.sun.org.slf4j.internal.LoggerFactory;
|
|
||||||
import org.springframework.context.annotation.Lazy;
|
import org.springframework.context.annotation.Lazy;
|
||||||
import org.springframework.stereotype.Service;
|
import org.springframework.stereotype.Service;
|
||||||
|
|
||||||
import javax.annotation.Resource;
|
import javax.annotation.Resource;
|
||||||
|
|
||||||
@Service
|
@Service
|
||||||
public class AliPayServiceImpl implements AliPayService {
|
public class AliPayServiceImpl implements AliPayService {
|
||||||
private static final Logger log = LoggerFactory.getLogger(AliPayServiceImpl.class);
|
|
||||||
@Resource
|
@Resource
|
||||||
private AliPayUtil aliPayUtil;
|
private AliPayUtil aliPayUtil;
|
||||||
@Resource
|
@Resource
|
||||||
|
|
|
||||||
|
|
@ -3,11 +3,10 @@ package com.bonus.core.order.mobile.dto;
|
||||||
import cn.hutool.core.bean.BeanUtil;
|
import cn.hutool.core.bean.BeanUtil;
|
||||||
import com.bonus.core.order.common.model.OrderShoppingCart;
|
import com.bonus.core.order.common.model.OrderShoppingCart;
|
||||||
import com.fasterxml.jackson.databind.JsonNode;
|
import com.fasterxml.jackson.databind.JsonNode;
|
||||||
import com.sun.istack.internal.NotNull;
|
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
|
||||||
import javax.validation.constraints.Min;
|
import javax.validation.constraints.Min;
|
||||||
import javax.validation.constraints.NotEmpty;
|
import javax.validation.constraints.NotEmpty;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
import java.time.LocalDate;
|
import java.time.LocalDate;
|
||||||
|
|
||||||
public class OrderShoppingCartAddDTO {
|
public class OrderShoppingCartAddDTO {
|
||||||
|
|
|
||||||
|
|
@ -1,8 +1,8 @@
|
||||||
package com.bonus.core.order.mobile.dto;
|
package com.bonus.core.order.mobile.dto;
|
||||||
|
|
||||||
import com.sun.istack.internal.NotNull;
|
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class OrderShoppingCartClearDTO {
|
public class OrderShoppingCartClearDTO {
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,9 @@
|
||||||
package com.bonus.core.order.mobile.dto;
|
package com.bonus.core.order.mobile.dto;
|
||||||
|
|
||||||
import com.sun.istack.internal.NotNull;
|
|
||||||
import io.swagger.annotations.ApiModelProperty;
|
import io.swagger.annotations.ApiModelProperty;
|
||||||
|
|
||||||
import javax.validation.constraints.Min;
|
import javax.validation.constraints.Min;
|
||||||
|
import javax.validation.constraints.NotNull;
|
||||||
|
|
||||||
public class OrderShoppingCartUpdateDTO {
|
public class OrderShoppingCartUpdateDTO {
|
||||||
@ApiModelProperty("购物车id")
|
@ApiModelProperty("购物车id")
|
||||||
|
|
|
||||||
Reference in New Issue