|
@@ -7,6 +7,7 @@ import lombok.EqualsAndHashCode;
|
|
|
import lombok.ToString;
|
|
|
import org.springframework.format.annotation.DateTimeFormat;
|
|
|
|
|
|
+import java.io.Serial;
|
|
|
import java.time.LocalDateTime;
|
|
|
|
|
|
import static cn.iocoder.yudao.framework.common.util.date.DateUtils.FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND;
|
|
@@ -41,7 +42,9 @@ public class ProductSpuPageReqVO extends PageParam {
|
|
|
* 商品回收站
|
|
|
*/
|
|
|
public static final Integer RECYCLE_BIN = 4;
|
|
|
-
|
|
|
+ @Serial
|
|
|
+ private static final long serialVersionUID = -3847080527614709590L;
|
|
|
+
|
|
|
@Schema(description = "商品名称", example = "清凉小短袖")
|
|
|
private String name;
|
|
|
|
|
@@ -54,5 +57,12 @@ public class ProductSpuPageReqVO extends PageParam {
|
|
|
@Schema(description = "创建时间", example = "[2022-07-01 00:00:00, 2022-07-01 23:59:59]")
|
|
|
@DateTimeFormat(pattern = FORMAT_YEAR_MONTH_DAY_HOUR_MINUTE_SECOND)
|
|
|
private LocalDateTime[] createTime;
|
|
|
-
|
|
|
+ @Schema(description = "产品类型 0自营 1代理", requiredMode = Schema.RequiredMode.REQUIRED, example = "1")
|
|
|
+ private String proType;
|
|
|
+
|
|
|
+ @Schema(description = "联系人手机号码")
|
|
|
+ private String phoneNumber;
|
|
|
+
|
|
|
+ @Schema(description = "联系人二维码路径")
|
|
|
+ private String qrCodePath;
|
|
|
}
|