Kaynağa Gözat

refactor(marketing): 为 Promotion 实体类的 isAllDevice 和 isAllGoods 字段添加默认值

hechunping 4 ay önce
ebeveyn
işleme
3cc94b8e2d

+ 2 - 2
src/main/java/com/xynet/marketing/entity/Promotion.java

@@ -48,9 +48,9 @@ public class Promotion {
 
     private Integer userLimitNum;
 
-    private Boolean isAllDevice;
+    private Boolean isAllDevice = true;
 
-    private Boolean isAllGoods;
+    private Boolean isAllGoods = true;
 
     private LocalDateTime createTime;