SysParamValueDao.java 279 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 package com.cjs.cms.dao.pub; import java.util.Date; import org.springframework.stereotype.Repository; /** * 配置变量表 * @author tongxiaochuan * */ @Repository public interface SysParamValueDao { String getParamValue(String paramName); Date getSysDate(); }