|
|
|
@ -16,14 +16,16 @@ import javax.persistence.Table;
|
|
|
|
|
/**
|
|
|
|
|
* @Description : WMS搜索元素表
|
|
|
|
|
* @Reference :
|
|
|
|
|
* @Author : sjc
|
|
|
|
|
* @Author : siliter.yuan
|
|
|
|
|
* @CreateDate : 2020-01-07 09:06
|
|
|
|
|
* @Modify:
|
|
|
|
|
**/
|
|
|
|
|
@Data
|
|
|
|
|
@Entity
|
|
|
|
|
@Table(name="WMS_SEARCHELEMENT", indexes = {
|
|
|
|
|
@Index(columnList = "FIELD_NAME")
|
|
|
|
|
@Index(columnList = "FIELD_NAME"),
|
|
|
|
|
@Index(columnList = "SEARCH_NAME"),
|
|
|
|
|
@Index(columnList = "USER_CODE")
|
|
|
|
|
})
|
|
|
|
|
@DynamicInsert
|
|
|
|
|
@DynamicUpdate
|
|
|
|
@ -32,6 +34,7 @@ import javax.persistence.Table;
|
|
|
|
|
public class WmsSearchElement extends BaseBean {
|
|
|
|
|
|
|
|
|
|
private static final long serialVersionUID = 3903166651913139062L;
|
|
|
|
|
|
|
|
|
|
@Column(name = "FIELD_NAME")
|
|
|
|
|
@ApiParam(value = "字段名称")
|
|
|
|
|
private String fieldName;
|
|
|
|
@ -51,4 +54,12 @@ public class WmsSearchElement extends BaseBean {
|
|
|
|
|
@Column(name = "CONDITION_CONNECTOR")
|
|
|
|
|
@ApiParam(value = "条件连接符:and/or")
|
|
|
|
|
private String conditionConnector;
|
|
|
|
|
|
|
|
|
|
@Column(name = "SEARCH_NAME")
|
|
|
|
|
@ApiParam(value = "搜索名称")
|
|
|
|
|
private String searchName;
|
|
|
|
|
|
|
|
|
|
@Column(name = "USER_CODE")
|
|
|
|
|
@ApiParam(value = "用户编号")
|
|
|
|
|
private String userCode;
|
|
|
|
|
}
|
|
|
|
|