admin
2019-07-30 573c491b4a1ba60e12a5678a01c1546c0077c1ee
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/SystemClientParamsMapper.java
@@ -2,17 +2,26 @@
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);
   CustomerName getHelpCenter(long id);
   Integer getProblemCount(long id);
   List<CustomerContent> contactCustomerService(String title);
public interface SystemClientParamsMapper extends BaseMapper<SystemClientParams>{
   /**
    *  根据系统id查询
    * @param systemId
    * @return
    */
   List<SystemClientParams> listBySystemId(@Param("systemId") Long systemId);
   SystemClientParams getSystemClientParamsBySystemAndKey(@Param("systemId") Long systemId, @Param("key") String key);
   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);
}