yujian
2020-04-02 0ec22dcf4fd9c4496e6f681e7fab89f56c6e4e8a
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/SystemClientParamsMapper.java
@@ -2,17 +2,20 @@
import java.util.List;
import com.yeshi.fanli.entity.system.CustomerContent;
import com.yeshi.fanli.entity.system.CustomerName;
import org.apache.ibatis.annotations.Param;
public interface SystemClientParamsMapper {
import com.yeshi.fanli.dao.BaseMapper;
import com.yeshi.fanli.entity.system.SystemClientParams;
   Integer getCount(int type);
public interface SystemClientParamsMapper extends BaseMapper<SystemClientParams> {
   CustomerName getHelpCenter(long id);
   List<SystemClientParams> listBySystemIdAndMinVersion(@Param("systemId") Long systemId,
         @Param("minVersion") Integer version);
   Integer getProblemCount(long id);
   SystemClientParams getSystemClientParamsBySystemAndKey(@Param("systemId") Long systemId, @Param("key") String key);
   List<CustomerContent> contactCustomerService(String title);
   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);
}