package com.basic.analy.dao; import com.basic.analy.model.BbFace; import org.apache.ibatis.annotations.Mapper; import org.springframework.stereotype.Repository; @Mapper @Repository public interface BbFaceDao { int deleteByPrimaryKey(Integer id); int insert(BbFace record); int insertSelective(BbFace record); BbFace selectByPrimaryKey(Integer id); int updateByResourceIdSelective(BbFace record); int updateByPrimaryKeyWithBLOBs(BbFace record); int updateByPrimaryKey(BbFace record); }