admin
2020-05-20 98b1a0affd69bbe63223c21fdd2c404e8bedfccb
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/SystemClientParamsMapper.java
@@ -7,21 +7,15 @@
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.system.SystemClientParams;
public interface SystemClientParamsMapper extends BaseMapper<SystemClientParams>{
   /**
    *  根据系统id查询
    * @param systemId
    * @return
    */
   List<SystemClientParams> listBySystemId(@Param("systemId") Long systemId);
public interface SystemClientParamsMapper extends BaseMapper<SystemClientParams> {
   List<SystemClientParams> listBySystemIdAndMinVersion(@Param("systemId") Long systemId,
         @Param("minVersion") Integer version);
   SystemClientParams getSystemClientParamsBySystemAndKey(@Param("systemId") Long systemId, @Param("key") String key);
   List<SystemClientParams> listQuery( @Param("start") long start,  @Param("count") int count,
   List<SystemClientParams> listQuery(@Param("start") long start, @Param("count") int count,
         @Param("systemId") Long systemId, @Param("key") String key);
   long countQuery(@Param("systemId") Long systemId, @Param("key") String key);
}