迁移搜索服务

This commit is contained in:
YunaiV
2020-08-03 20:38:12 +08:00
parent 72ed490334
commit 128b9dc21a
57 changed files with 366 additions and 871 deletions

View File

@@ -1 +1,4 @@
/**
* 占位,避免包折叠
*/
package cn.iocoder.mall.searchservice.enums;

View File

@@ -0,0 +1,19 @@
package cn.iocoder.mall.searchservice.enums.product;
/**
* 搜索商品条件的字段枚举
*/
public enum SearchProductConditionFieldEnum {
CATEGORY("category");
/**
* 字段
*/
private final String field;
SearchProductConditionFieldEnum(String field) {
this.field = field;
}
}

View File

@@ -1 +1,4 @@
/**
* 占位,避免包折叠
*/
package cn.iocoder.mall.searchservice.rpc;