yujian
2020-05-09 7e7db2fa55a9a3af46d4fd8ede0dee147f101d64
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);
}