package com.landtool.lanbase.modules.sys.dao; import java.util.List; import com.landtool.lanbase.modules.sys.entity.SysField; import com.landtool.lanbase.modules.sys.dao.BaseDao; import org.apache.ibatis.annotations.Mapper; @Mapper public interface SysFieldDao extends BaseDao { List queryAllList(); // modidied by qufangxu int deleteByFkeyFromSysField(String[] fkeys); int deleteByFkeyFromSysFieldValue(String[] fkeys); }