admin
2020-06-09 6ec3af1c45a0cc46e666d56e0ccc9a2c178015ae
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);
}