package com.zcxk.admin.dao; import com.zcxk.admin.entity.FacilitiesConfigAttribute; import org.apache.ibatis.annotations.Mapper; import java.util.List; @Mapper public interface FacilitiesConfigAttributeMapper { int deleteByPrimaryKey(Integer id); int insert(FacilitiesConfigAttribute record); int insertSelective(FacilitiesConfigAttribute record); FacilitiesConfigAttribute selectByPrimaryKey(Integer id); List selectByfacilitiesConfigid(Integer id); int updateByPrimaryKeySelective(FacilitiesConfigAttribute record); int updateByPrimaryKey(FacilitiesConfigAttribute record); void deleteByfacilitiesConfigid(Integer id); }