package com.mindskip.xzs.repository;
|
|
import com.mindskip.xzs.domain.TextContent;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* @version 2.2.0
|
* @description: Json数据存储
|
* Copyright (C), 2020-2021, 武汉思维跳跃科技有限公司
|
* @date 2021 /9/7 9:45
|
*/
|
@Mapper
|
public interface TextContentMapper extends BaseMapper<TextContent> {
|
int deleteByPrimaryKey(Integer id);
|
|
int insert(TextContent record);
|
|
int insertSelective(TextContent record);
|
|
TextContent selectByPrimaryKey(Integer id);
|
|
int updateByPrimaryKeySelective(TextContent record);
|
|
int updateByPrimaryKey(TextContent record);
|
}
|