package com.hai.dao;
import com.hai.entity.CmsPatch;
import org.apache.ibatis.annotations.Insert;
import org.apache.ibatis.annotations.Param;
import java.util.List;
/**
* mapper扩展类
*/
public interface CmsPatchMapperExt {
@Insert(value = {
""
})
int addListPatch(@Param(value = "patchList") List patchList,
@Param(value = "contentId") Long contentId) throws Exception;
}