1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495 |
- package com.sysmodel.listmodel.xmlmanager.xmlobjdll;
- import com.sysmodel.listmodel.xmlmodel.able.PramField;
- import com.sysmodel.listmodel.xmlmodel.impl.FormListImpl;
- import com.sysmodel.listmodel.xmlmodel.impl.ListFieldImpl;
- import com.sysmodel.listmodel.xmlmodel.impl.PramFieldImpl;
- import com.sysmodel.listmodel.xmlmodel.impl.QueryFieldImpl;
- public interface ListModeldllable{
- /**
- * 新增 FormList 对象
- */
- public boolean addFormList(FormListImpl imp);
- /**
- * 删除 FormList 对象
- */
- public boolean deleteFormList(FormListImpl imp);
- /**
- * 更新 FormList 对象
- */
- public boolean updateFormList(FormListImpl imp);
- /**
- * 新增 列表查询条件
- */
- public String addFormListTable(FormListImpl imp, String tableId);
- /**
- * 删除 列表查询条件
- */
- public String deleteFormListTable(FormListImpl imp, String tableId);
- /**
- * 新增 PramField 参数对象
- */
- public String addFormListCondition(FormListImpl imp, String condition);
- /**
- * 删除 PramField 参数对象
- */
- public String deleteFormListCondition(FormListImpl imp, String condition);
- /**
- * 新增 查询表
- */
- public String addFormListPramField(FormListImpl imp, PramFieldImpl PramField);
- /**
- * 删除 查询表
- */
- public String deleteFormListPramField(FormListImpl imp, PramField PramField);
- /**
- * 更新 列表字段对象 ListField
- */
- public String updateListField(FormListImpl imp, ListFieldImpl ListFieldImpl, String oDataName,
- String oLabel);
- /**
- * 更新 查询条件对象
- */
- public String updateQueryField(FormListImpl imp, QueryFieldImpl QueryFieldImpl,
- String oDataName, String oLabel);
- /**
- * pagelist.xml文件校验
- */
- public String checkFormListConfig(FormListImpl FormList);
- /**
- * 更新FormList
- *
- * @param FormList
- * @return
- */
- public String updateFormListConfig(FormListImpl FormList);
- /**
- * 根据DataModel生成FormList
- *
- * @param classid
- * @return
- */
- public String createTablesXML(String classidStr);
- /**
- * 对FormList进行属性排序
- *
- * @param listid
- * @return
- */
- public String FormListAttributeSort(String listidStr);
- }
|