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

pull/4/MERGE
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;
import java.io.Serializable;
/**
* DTO
*
* ing ES SortField
*/
public class SortingField {
public class SortingField implements Serializable {
/**
*
*/
private String field;
/**
*
*
*/
private String order;
// 空构造方法,解决反序列化
public SortingField() {
}
public SortingField(String field, String order) {
this.field = field;
this.order = order;

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