FacilitiesConfigAttributeMapper.java 690 B

123456789101112131415161718192021222324
  1. package com.zcxk.admin.dao;
  2. import com.zcxk.admin.entity.FacilitiesConfigAttribute;
  3. import org.apache.ibatis.annotations.Mapper;
  4. import java.util.List;
  5. @Mapper
  6. public interface FacilitiesConfigAttributeMapper {
  7. int deleteByPrimaryKey(Integer id);
  8. int insert(FacilitiesConfigAttribute record);
  9. int insertSelective(FacilitiesConfigAttribute record);
  10. FacilitiesConfigAttribute selectByPrimaryKey(Integer id);
  11. List<FacilitiesConfigAttribute> selectByfacilitiesConfigid(Integer id);
  12. int updateByPrimaryKeySelective(FacilitiesConfigAttribute record);
  13. int updateByPrimaryKey(FacilitiesConfigAttribute record);
  14. void deleteByfacilitiesConfigid(Integer id);
  15. }