sms配置文件

This commit is contained in:
wangw 2025-02-27 17:41:40 +08:00
parent 29158bebcb
commit a61e749270
5 changed files with 5 additions and 2 deletions

View File

@ -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

View File

@ -6,6 +6,7 @@ spring:
name: order-server
profiles:
active: dev
include: tools
logging:
config: classpath:logback.xml

View File

@ -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;

View File

@ -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