| | |
| | | |
| | | import com.yeshi.buwan.domain.system.DetailSystemConfig; |
| | | |
| | | import java.math.BigInteger; |
| | | import java.util.List; |
| | | |
| | | @Repository |
| | |
| | | return null; |
| | | } |
| | | |
| | | public List<DetailSystemConfig> list(Long systemId, String searchKey) { |
| | | return list("from DetailSystemConfig c where c.systemId=? and c.beizhu like ?", new BigInteger( systemId+""), "%" + searchKey + "%"); |
| | | } |
| | | |
| | | |
| | | |
| | | public List<DetailSystemConfig> listByValue(Long systemId, String searchKey) { |
| | | return list("from DetailSystemConfig c where c.systemId=? and c.value like ?", new BigInteger( systemId+""), "%" + searchKey + "%"); |
| | | } |
| | | |
| | | } |