mirror of
http://192.168.1.205:9980/cf_devdept2/cf_imes_server.git
synced 2026-08-13 05:12:07 +08:00
订单支持新增子订单和查询
This commit is contained in:
+6
@@ -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)) {
|
||||
|
||||
Reference in New Issue
Block a user