refactor(vo): 移除创建与更新时间的必填校验

This commit is contained in:
2026-04-08 09:52:10 +08:00
parent da7bfbc9ce
commit d0f4ad25c0
4 changed files with 12 additions and 0 deletions

View File

@@ -52,4 +52,7 @@ public class KeyboardProductItemsPageReqVO extends PageParam {
@Schema(description = "订阅等级")
private Integer level;
@Schema(description = "平台")
private String platform;
}

View File

@@ -67,4 +67,7 @@ public class KeyboardProductItemsRespVO {
@Schema(description = "订阅等级")
private Integer level;
@Schema(description = "平台")
private String platform;
}

View File

@@ -59,4 +59,7 @@ public class KeyboardProductItemsSaveReqVO {
@Schema(description = "订阅等级")
private Integer level;
@Schema(description = "平台")
private String platform;
}

View File

@@ -1,6 +1,7 @@
package com.yolo.keyboard.dal.dataobject.productitems;
import com.yolo.keyboard.framework.tenant.core.aop.TenantIgnore;
import io.swagger.v3.oas.annotations.media.Schema;
import lombok.*;
import java.util.*;
import java.math.BigDecimal;
@@ -81,4 +82,6 @@ public class KeyboardProductItemsDO{
* 订阅等级
*/
private Integer level;
private String platform;
}