refactor(vo): 移除创建与更新时间的必填校验
This commit is contained in:
@@ -52,4 +52,7 @@ public class KeyboardProductItemsPageReqVO extends PageParam {
|
|||||||
|
|
||||||
@Schema(description = "订阅等级")
|
@Schema(description = "订阅等级")
|
||||||
private Integer level;
|
private Integer level;
|
||||||
|
|
||||||
|
@Schema(description = "平台")
|
||||||
|
private String platform;
|
||||||
}
|
}
|
||||||
@@ -67,4 +67,7 @@ public class KeyboardProductItemsRespVO {
|
|||||||
|
|
||||||
@Schema(description = "订阅等级")
|
@Schema(description = "订阅等级")
|
||||||
private Integer level;
|
private Integer level;
|
||||||
|
|
||||||
|
@Schema(description = "平台")
|
||||||
|
private String platform;
|
||||||
}
|
}
|
||||||
@@ -59,4 +59,7 @@ public class KeyboardProductItemsSaveReqVO {
|
|||||||
|
|
||||||
@Schema(description = "订阅等级")
|
@Schema(description = "订阅等级")
|
||||||
private Integer level;
|
private Integer level;
|
||||||
|
|
||||||
|
@Schema(description = "平台")
|
||||||
|
private String platform;
|
||||||
}
|
}
|
||||||
@@ -1,6 +1,7 @@
|
|||||||
package com.yolo.keyboard.dal.dataobject.productitems;
|
package com.yolo.keyboard.dal.dataobject.productitems;
|
||||||
|
|
||||||
import com.yolo.keyboard.framework.tenant.core.aop.TenantIgnore;
|
import com.yolo.keyboard.framework.tenant.core.aop.TenantIgnore;
|
||||||
|
import io.swagger.v3.oas.annotations.media.Schema;
|
||||||
import lombok.*;
|
import lombok.*;
|
||||||
import java.util.*;
|
import java.util.*;
|
||||||
import java.math.BigDecimal;
|
import java.math.BigDecimal;
|
||||||
@@ -81,4 +82,6 @@ public class KeyboardProductItemsDO{
|
|||||||
* 订阅等级
|
* 订阅等级
|
||||||
*/
|
*/
|
||||||
private Integer level;
|
private Integer level;
|
||||||
|
|
||||||
|
private String platform;
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user