初始项目信息导入

This commit is contained in:
zhh
2018-04-13 13:50:33 +08:00
commit 42d8ff5fb3
293 changed files with 92543 additions and 0 deletions

View File

@@ -0,0 +1,36 @@
package com.macro.mall.mapper;
import com.macro.mall.model.CmsHelp;
import com.macro.mall.model.CmsHelpExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface CmsHelpMapper {
int countByExample(CmsHelpExample example);
int deleteByExample(CmsHelpExample example);
int deleteByPrimaryKey(Long id);
int insert(CmsHelp record);
int insertSelective(CmsHelp record);
List<CmsHelp> selectByExampleWithBLOBs(CmsHelpExample example);
List<CmsHelp> selectByExample(CmsHelpExample example);
CmsHelp selectByPrimaryKey(Long id);
int updateByExampleSelective(@Param("record") CmsHelp record, @Param("example") CmsHelpExample example);
int updateByExampleWithBLOBs(@Param("record") CmsHelp record, @Param("example") CmsHelpExample example);
int updateByExample(@Param("record") CmsHelp record, @Param("example") CmsHelpExample example);
int updateByPrimaryKeySelective(CmsHelp record);
int updateByPrimaryKeyWithBLOBs(CmsHelp record);
int updateByPrimaryKey(CmsHelp record);
}