1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- package com.sysmodel.listmodel.xmlmodel.able;
- import java.util.ArrayList;
- import com.sysmodel.listmodel.xmlmodel.impl.ListFieldImpl;
- public interface QueryList{
- /**
- * 获取查询条件
- *
- * @return
- */
- public String getCondition();
- /**
- * 获取是否排序
- *
- * @return
- */
- public boolean isHaveOrder();
- /**
- * 获取页面值
- *
- * @return
- */
- public int getPageSize();
- /**
- * 获取查询表的结合
- *
- * @return
- */
- public String getTableList();
- /**
- * 获取排序
- *
- * @return
- */
- public String getOrderBy();
- /**
- *
- * @return
- */
- public String getCheckboxOrradio();
- /**
- * 获得列表字段结合
- *
- * @return
- */
- public ArrayList<ListFieldImpl> getlistFields();
- public boolean isCheckbox();
- /**
- *
- * @return
- */
- public ArrayList<ListFieldImpl> getlistFieldsByType(String type);
- public Object clone();
- }
|