|
|
|
@ -8,10 +8,7 @@ import lombok.EqualsAndHashCode;
|
|
|
|
|
import org.hibernate.annotations.DynamicInsert;
|
|
|
|
|
import org.hibernate.annotations.DynamicUpdate;
|
|
|
|
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
|
|
import javax.persistence.Entity;
|
|
|
|
|
import javax.persistence.Index;
|
|
|
|
|
import javax.persistence.Table;
|
|
|
|
|
import javax.persistence.*;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @Description : WMS搜索元素表
|
|
|
|
@ -62,4 +59,14 @@ public class WmsSearchElement extends BaseBean {
|
|
|
|
|
@Column(name = "USER_CODE")
|
|
|
|
|
@ApiParam(value = "用户编号")
|
|
|
|
|
private String userCode;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 搜索组名称
|
|
|
|
|
*/
|
|
|
|
|
private String groupName;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 搜索组连接符
|
|
|
|
|
*/
|
|
|
|
|
private String groupConnector;
|
|
|
|
|
}
|
|
|
|
|