ResourcesContentDataMapper.java 752 Bytes
package com.yohoufo.dal.resource;

import java.util.List;

import org.apache.ibatis.annotations.Param;

import com.yohoufo.dal.resource.model.ResourcesContentData;

public interface ResourcesContentDataMapper {

    int insert(ResourcesContentData record);

    int insertSelective(ResourcesContentData record);

    ResourcesContentData selectByPrimaryKey(Integer id);

    ResourcesContentData selectByResourceContentId(Integer id);

    List<ResourcesContentData> selectByResourceContentIds(@Param("resourceContentIds") List<Integer> resourceContentIds);

    int updateByPrimaryKeySelective(ResourcesContentData record);

    int updateByPrimaryKeyWithBLOBs(ResourcesContentData record);

    int updateByPrimaryKey(ResourcesContentData record);

}