小板信息增加字段:侧面造型,二维/侧面二维 刀路

This commit is contained in:
liuzhaotian
2025-05-16 15:02:02 +08:00
parent a0b2462f58
commit dc05d230f5
14 changed files with 150 additions and 25 deletions
@@ -38,6 +38,11 @@ public class AssertUtils {
}
}
public static void empty(Object object, ErrorCode errorCode) {
if (object != null) {
throw exception(errorCode);
}
}
public static void notEmpty(Object object, ErrorCode errorCode) {
if (object == null) {