完成的商品搜索和条件功能

This commit is contained in:
YunaiV 2020-08-04 19:42:54 +08:00
parent f3316d14c7
commit b83262af5f
240 changed files with 246 additions and 859 deletions

View File

@ -1,21 +1,27 @@
package cn.iocoder.common.framework.vo; package cn.iocoder.common.framework.vo;
import java.io.Serializable;
/** /**
* 排序字段 DTO * 排序字段 DTO
* *
* 类名加了 ing 的原因是避免和 ES SortField 重名 * 类名加了 ing 的原因是避免和 ES SortField 重名
*/ */
public class SortingField { public class SortingField implements Serializable {
/** /**
* 字段 * 字段
*/ */
private String field; private String field;
/** /**
* *
*/ */
private String order; private String order;
// 空构造方法解决反序列化
public SortingField() {
}
public SortingField(String field, String order) { public SortingField(String field, String order) {
this.field = field; this.field = field;
this.order = order; this.order = order;

Some files were not shown because too many files have changed in this diff Show More