迁移搜索服务
This commit is contained in:
@@ -1 +1,4 @@
|
||||
/**
|
||||
* 占位,避免包折叠
|
||||
*/
|
||||
package cn.iocoder.mall.searchservice.enums;
|
||||
|
||||
@@ -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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1 +1,4 @@
|
||||
/**
|
||||
* 占位,避免包折叠
|
||||
*/
|
||||
package cn.iocoder.mall.searchservice.rpc;
|
||||
|
||||
Reference in New Issue
Block a user