admin
2025-02-25 30d8e227e8d823b6c38c3b9c90ac2df03b63befe
fanli/src/main/java/com/yeshi/fanli/dao/mybatis/customerservice/CustomerServiceCommonQuestionMapper.java
@@ -10,6 +10,8 @@
   int deleteByPrimaryKey(Long id);
   int deleteBatchByPrimaryKey(List<Long> list);
   int insert(CustomerServiceCommonQuestion record);
   int insertSelective(CustomerServiceCommonQuestion record);
@@ -40,4 +42,25 @@
   int updateByPrimaryKey(CustomerServiceCommonQuestion record);
   
   List<String> selectKeys();
   /**
    * 后端查询列表
    * @param start
    * @param count
    * @param key
    * @param type
    * @param state
    * @return
    */
   List<CustomerServiceCommonQuestion> listQuery(@Param("start") long start, @Param("count") int count,
         @Param("key")String key, @Param("type")String type,
         @Param("state") Integer state, @Param("sort") Integer sort);
   /**
    * 统计
    * @param key
    * @param type
    * @param state
    * @return
    */
   long countQuery(@Param("key")String key, @Param("type")String type, @Param("state") Integer state);
}