| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- package com.goafanti.common.dao;
- import com.goafanti.business.bo.BusinessVarietiesBo;
- import com.goafanti.business.bo.VarietiesBo;
- import com.goafanti.common.model.BusinessVarieties;
- import com.goafanti.common.model.BusinessVarietiesExample;
- import java.util.List;
- import org.apache.ibatis.annotations.Param;
- public interface BusinessVarietiesMapper {
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_varieties
- * @mbg.generated Tue Jan 09 15:08:39 CST 2018
- */
- long countByExample(BusinessVarietiesExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_varieties
- * @mbg.generated Tue Jan 09 15:08:39 CST 2018
- */
- int deleteByExample(BusinessVarietiesExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_varieties
- * @mbg.generated Tue Jan 09 15:08:39 CST 2018
- */
- int deleteByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_varieties
- * @mbg.generated Tue Jan 09 15:08:39 CST 2018
- */
- int insert(BusinessVarieties record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_varieties
- * @mbg.generated Tue Jan 09 15:08:39 CST 2018
- */
- int insertSelective(BusinessVarieties record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_varieties
- * @mbg.generated Tue Jan 09 15:08:39 CST 2018
- */
- List<BusinessVarieties> selectByExample(BusinessVarietiesExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_varieties
- * @mbg.generated Tue Jan 09 15:08:39 CST 2018
- */
- BusinessVarieties selectByPrimaryKey(String id);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_varieties
- * @mbg.generated Tue Jan 09 15:08:39 CST 2018
- */
- int updateByExampleSelective(@Param("record") BusinessVarieties record,
- @Param("example") BusinessVarietiesExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_varieties
- * @mbg.generated Tue Jan 09 15:08:39 CST 2018
- */
- int updateByExample(@Param("record") BusinessVarieties record, @Param("example") BusinessVarietiesExample example);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_varieties
- * @mbg.generated Tue Jan 09 15:08:39 CST 2018
- */
- int updateByPrimaryKeySelective(BusinessVarieties record);
- /**
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_varieties
- * @mbg.generated Tue Jan 09 15:08:39 CST 2018
- */
- int updateByPrimaryKey(BusinessVarieties record);
- String getCount(String superId);
-
- String getCid(String superId);
-
- List<BusinessVarietiesBo> getSuperList();
-
- BusinessVarietiesBo editVarieties(@Param("id")String id);
-
- String ThanCid(String cid);
-
- int getcname(String cname);//获取有多少条
-
- List<BusinessVarietiesBo> selectSuperid(String spuerId);
-
- String getThisCid(String id);
-
- String getThisCname(String cid);
-
- List<String> getListId();
-
- int getLayer(String superId);
- List<VarietiesBo> getVarieties();
- String getCidMax(String superId);
- String getSortMax();
- BusinessVarieties selectBySort(Integer sort);
- }
|