订单支持新增子订单和查询

This commit is contained in:
gaoqr
2026-04-03 17:47:34 +08:00
parent 73ee746c8e
commit a644dc95d0
9 changed files with 75 additions and 17 deletions
@@ -65,6 +65,12 @@ public class AssertUtils {
}
}
public static void notEmpty(Object object, ErrorCode errorCode, Object... params) {
if (object == null) {
throw new ServiceException(errorCode, params);
}
}
public static void notEmpty(List<?> array ,Object object, ErrorCode errorCode) {
if (object == null || ObjectUtils.isEmpty(array)) {