sms配置文件
This commit is contained in:
parent
29158bebcb
commit
a61e749270
|
|
@ -30,7 +30,7 @@ dubbo:
|
|||
application:
|
||||
name: order-server
|
||||
qos-port: 22231
|
||||
# qos-enable: true
|
||||
# qos-enable: true
|
||||
registry:
|
||||
address: nacos://121.40.109.122:8848 # Nacos 服务地址
|
||||
group: server-dev
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ spring:
|
|||
name: order-server
|
||||
profiles:
|
||||
active: dev
|
||||
include: tools
|
||||
|
||||
logging:
|
||||
config: classpath:logback.xml
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@ package com.czg.order.vo;
|
|||
import com.czg.order.entity.OrderDetail;
|
||||
import com.czg.order.entity.OrderInfo;
|
||||
import lombok.Data;
|
||||
import lombok.EqualsAndHashCode;
|
||||
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
|
@ -11,6 +12,7 @@ import java.util.Map;
|
|||
* @author ww
|
||||
* @description
|
||||
*/
|
||||
@EqualsAndHashCode(callSuper = true)
|
||||
@Data
|
||||
public class HistoryOrderVo extends OrderInfo {
|
||||
// private OrderInfo info;
|
||||
|
|
|
|||
|
|
@ -90,7 +90,7 @@ public class ShopCouponServiceImpl extends ServiceImpl<ShopCouponMapper, ShopCou
|
|||
if (CollectionUtil.isNotEmpty(shopUserIds)) {
|
||||
return couponRecordService.findByUser(PageUtil.buildPage(), shopUserIds, status);
|
||||
}
|
||||
return null;
|
||||
return new Page<>();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Reference in New Issue