com.centit.framework.system.dao.OsInfoDao Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of framework-system-module Show documentation
Show all versions of framework-system-module Show documentation
定义了一组和core兼容的表结构,并用mybatis实现了表的增删改查
The newest version!
package com.centit.framework.system.dao;
import com.centit.framework.core.dao.CodeBook;
import com.centit.framework.jdbc.dao.BaseDaoImpl;
import com.centit.framework.system.po.OsInfo;
import org.springframework.stereotype.Repository;
import java.util.HashMap;
import java.util.Map;
@Repository
public class OsInfoDao extends BaseDaoImpl {
public Map getFilterField() {
Map filterField = new HashMap<>();
filterField.put("osId", CodeBook.LIKE_HQL_ID);
filterField.put("osName", CodeBook.LIKE_HQL_ID);
filterField.put("hasInterface", CodeBook.LIKE_HQL_ID);
filterField.put("interfaceUrl", CodeBook.LIKE_HQL_ID);
filterField.put("created", CodeBook.LIKE_HQL_ID);
filterField.put("lastUpdateTime", CodeBook.LIKE_HQL_ID);
filterField.put("createTime", CodeBook.LIKE_HQL_ID);
return filterField;
}
}