替换函数部分

dev
zhoushen 1 year ago
parent b9ac0e0c91
commit 609ccc4612

@ -1,30 +1,32 @@
package com.macro.mall.mapper;
package com.macro.mall.mapper; // 定义了该接口所属的包名用于Java的包管理
import com.macro.mall.model.PmsCommentReplay;
import com.macro.mall.model.PmsCommentReplayExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.macro.mall.model.PmsCommentReplay; // 导入了PmsCommentReplay实体类用于数据库表的映射
import com.macro.mall.model.PmsCommentReplayExample; // 导入了PmsCommentReplayExample类用于构建查询条件
import java.util.List; // 导入了List接口用于存储查询结果集
import org.apache.ibatis.annotations.Param; // 导入了MyBatis的Param注解用于指定参数名称
public interface PmsCommentReplayMapper {
long countByExample(PmsCommentReplayExample example);
public interface PmsCommentReplayMapper { // 声明了一个MyBatis的Mapper接口用于数据库操作
// 以下方法都是MyBatis映射的方法用于数据库的CRUD操作
int deleteByExample(PmsCommentReplayExample example);
long countByExample(PmsCommentReplayExample example); // 根据example条件统计记录数
int deleteByPrimaryKey(Long id);
int deleteByExample(PmsCommentReplayExample example); // 根据example条件删除记录
int insert(PmsCommentReplay record);
int deleteByPrimaryKey(Long id); // 根据主键id删除记录
int insertSelective(PmsCommentReplay record);
int insert(PmsCommentReplay record); // 插入一条PmsCommentReplay记录
List<PmsCommentReplay> selectByExample(PmsCommentReplayExample example);
int insertSelective(PmsCommentReplay record); // 插入一条PmsCommentReplay记录只插入不为null的字段
PmsCommentReplay selectByPrimaryKey(Long id);
List<PmsCommentReplay> selectByExample(PmsCommentReplayExample example); // 根据example条件查询PmsCommentReplay记录
int updateByExampleSelective(@Param("record") PmsCommentReplay record, @Param("example") PmsCommentReplayExample example);
PmsCommentReplay selectByPrimaryKey(Long id); // 根据主键id查询PmsCommentReplay记录
int updateByExample(@Param("record") PmsCommentReplay record, @Param("example") PmsCommentReplayExample example);
int updateByExampleSelective(@Param("record") PmsCommentReplay record, @Param("example") PmsCommentReplayExample example); // 根据example条件更新PmsCommentReplay记录只更新不为null的字段
int updateByPrimaryKeySelective(PmsCommentReplay record);
int updateByExample(@Param("record") PmsCommentReplay record, @Param("example") PmsCommentReplayExample example); // 根据example条件更新PmsCommentReplay记录
int updateByPrimaryKey(PmsCommentReplay record);
int updateByPrimaryKeySelective(PmsCommentReplay record); // 根据主键id更新PmsCommentReplay记录只更新不为null的字段
int updateByPrimaryKey(PmsCommentReplay record); // 根据主键id更新PmsCommentReplay记录
}

@ -1,30 +1,32 @@
package com.macro.mall.mapper;
package com.macro.mall.mapper; // 定义了该接口所属的包名用于Java的包管理
import com.macro.mall.model.PmsFeightTemplate;
import com.macro.mall.model.PmsFeightTemplateExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.macro.mall.model.PmsFeightTemplate; // 导入了PmsFeightTemplate实体类用于数据库表的映射
import com.macro.mall.model.PmsFeightTemplateExample; // 导入了PmsFeightTemplateExample类用于构建查询条件
import java.util.List; // 导入了List接口用于存储查询结果集
import org.apache.ibatis.annotations.Param; // 导入了MyBatis的Param注解用于指定参数名称
public interface PmsFeightTemplateMapper {
long countByExample(PmsFeightTemplateExample example);
public interface PmsFeightTemplateMapper { // 声明了一个MyBatis的Mapper接口用于数据库操作
// 以下方法都是MyBatis映射的方法用于数据库的CRUD操作
int deleteByExample(PmsFeightTemplateExample example);
long countByExample(PmsFeightTemplateExample example); // 根据example条件统计记录数
int deleteByPrimaryKey(Long id);
int deleteByExample(PmsFeightTemplateExample example); // 根据example条件删除记录
int insert(PmsFeightTemplate record);
int deleteByPrimaryKey(Long id); // 根据主键id删除记录
int insertSelective(PmsFeightTemplate record);
int insert(PmsFeightTemplate record); // 插入一条PmsFeightTemplate记录
List<PmsFeightTemplate> selectByExample(PmsFeightTemplateExample example);
int insertSelective(PmsFeightTemplate record); // 插入一条PmsFeightTemplate记录只插入不为null的字段
PmsFeightTemplate selectByPrimaryKey(Long id);
List<PmsFeightTemplate> selectByExample(PmsFeightTemplateExample example); // 根据example条件查询PmsFeightTemplate记录
int updateByExampleSelective(@Param("record") PmsFeightTemplate record, @Param("example") PmsFeightTemplateExample example);
PmsFeightTemplate selectByPrimaryKey(Long id); // 根据主键id查询PmsFeightTemplate记录
int updateByExample(@Param("record") PmsFeightTemplate record, @Param("example") PmsFeightTemplateExample example);
int updateByExampleSelective(@Param("record") PmsFeightTemplate record, @Param("example") PmsFeightTemplateExample example); // 根据example条件更新PmsFeightTemplate记录只更新不为null的字段
int updateByPrimaryKeySelective(PmsFeightTemplate record);
int updateByExample(@Param("record") PmsFeightTemplate record, @Param("example") PmsFeightTemplateExample example); // 根据example条件更新PmsFeightTemplate记录
int updateByPrimaryKey(PmsFeightTemplate record);
int updateByPrimaryKeySelective(PmsFeightTemplate record); // 根据主键id更新PmsFeightTemplate记录只更新不为null的字段
int updateByPrimaryKey(PmsFeightTemplate record); // 根据主键id更新PmsFeightTemplate记录
}

@ -1,30 +1,32 @@
package com.macro.mall.mapper;
package com.macro.mall.mapper; // 定义了该接口所属的包名用于Java的包管理
import com.macro.mall.model.PmsMemberPrice;
import com.macro.mall.model.PmsMemberPriceExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.macro.mall.model.PmsMemberPrice; // 导入了PmsMemberPrice实体类用于数据库表的映射
import com.macro.mall.model.PmsMemberPriceExample; // 导入了PmsMemberPriceExample类用于构建查询条件
import java.util.List; // 导入了List接口用于存储查询结果集
import org.apache.ibatis.annotations.Param; // 导入了MyBatis的Param注解用于指定参数名称
public interface PmsMemberPriceMapper {
long countByExample(PmsMemberPriceExample example);
public interface PmsMemberPriceMapper { // 声明了一个MyBatis的Mapper接口用于数据库操作
// 以下方法都是MyBatis映射的方法用于数据库的CRUD操作
int deleteByExample(PmsMemberPriceExample example);
long countByExample(PmsMemberPriceExample example); // 根据example条件统计记录数
int deleteByPrimaryKey(Long id);
int deleteByExample(PmsMemberPriceExample example); // 根据example条件删除记录
int insert(PmsMemberPrice record);
int deleteByPrimaryKey(Long id); // 根据主键id删除记录
int insertSelective(PmsMemberPrice record);
int insert(PmsMemberPrice record); // 插入一条PmsMemberPrice记录
List<PmsMemberPrice> selectByExample(PmsMemberPriceExample example);
int insertSelective(PmsMemberPrice record); // 插入一条PmsMemberPrice记录只插入不为null的字段
PmsMemberPrice selectByPrimaryKey(Long id);
List<PmsMemberPrice> selectByExample(PmsMemberPriceExample example); // 根据example条件查询PmsMemberPrice记录
int updateByExampleSelective(@Param("record") PmsMemberPrice record, @Param("example") PmsMemberPriceExample example);
PmsMemberPrice selectByPrimaryKey(Long id); // 根据主键id查询PmsMemberPrice记录
int updateByExample(@Param("record") PmsMemberPrice record, @Param("example") PmsMemberPriceExample example);
int updateByExampleSelective(@Param("record") PmsMemberPrice record, @Param("example") PmsMemberPriceExample example); // 根据example条件更新PmsMemberPrice记录只更新不为null的字段
int updateByPrimaryKeySelective(PmsMemberPrice record);
int updateByExample(@Param("record") PmsMemberPrice record, @Param("example") PmsMemberPriceExample example); // 根据example条件更新PmsMemberPrice记录
int updateByPrimaryKey(PmsMemberPrice record);
int updateByPrimaryKeySelective(PmsMemberPrice record); // 根据主键id更新PmsMemberPrice记录只更新不为null的字段
int updateByPrimaryKey(PmsMemberPrice record); // 根据主键id更新PmsMemberPrice记录
}

@ -1,30 +1,32 @@
package com.macro.mall.mapper;
package com.macro.mall.mapper; // 定义了该接口所属的包名用于Java的包管理
import com.macro.mall.model.PmsProductAttributeCategory;
import com.macro.mall.model.PmsProductAttributeCategoryExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.macro.mall.model.PmsProductAttributeCategory; // 导入了PmsProductAttributeCategory实体类用于数据库表的映射
import com.macro.mall.model.PmsProductAttributeCategoryExample; // 导入了PmsProductAttributeCategoryExample类用于构建查询条件
import java.util.List; // 导入了List接口用于存储查询结果集
import org.apache.ibatis.annotations.Param; // 导入了MyBatis的Param注解用于指定参数名称
public interface PmsProductAttributeCategoryMapper {
long countByExample(PmsProductAttributeCategoryExample example);
public interface PmsProductAttributeCategoryMapper { // 声明了一个MyBatis的Mapper接口用于数据库操作
// 以下方法都是MyBatis映射的方法用于数据库的CRUD操作
int deleteByExample(PmsProductAttributeCategoryExample example);
long countByExample(PmsProductAttributeCategoryExample example); // 根据example条件统计记录数
int deleteByPrimaryKey(Long id);
int deleteByExample(PmsProductAttributeCategoryExample example); // 根据example条件删除记录
int insert(PmsProductAttributeCategory record);
int deleteByPrimaryKey(Long id); // 根据主键id删除记录
int insertSelective(PmsProductAttributeCategory record);
int insert(PmsProductAttributeCategory record); // 插入一条PmsProductAttributeCategory记录
List<PmsProductAttributeCategory> selectByExample(PmsProductAttributeCategoryExample example);
int insertSelective(PmsProductAttributeCategory record); // 插入一条PmsProductAttributeCategory记录只插入不为null的字段
PmsProductAttributeCategory selectByPrimaryKey(Long id);
List<PmsProductAttributeCategory> selectByExample(PmsProductAttributeCategoryExample example); // 根据example条件查询PmsProductAttributeCategory记录
int updateByExampleSelective(@Param("record") PmsProductAttributeCategory record, @Param("example") PmsProductAttributeCategoryExample example);
PmsProductAttributeCategory selectByPrimaryKey(Long id); // 根据主键id查询PmsProductAttributeCategory记录
int updateByExample(@Param("record") PmsProductAttributeCategory record, @Param("example") PmsProductAttributeCategoryExample example);
int updateByExampleSelective(@Param("record") PmsProductAttributeCategory record, @Param("example") PmsProductAttributeCategoryExample example); // 根据example条件更新PmsProductAttributeCategory记录只更新不为null的字段
int updateByPrimaryKeySelective(PmsProductAttributeCategory record);
int updateByExample(@Param("record") PmsProductAttributeCategory record, @Param("example") PmsProductAttributeCategoryExample example); // 根据example条件更新PmsProductAttributeCategory记录
int updateByPrimaryKey(PmsProductAttributeCategory record);
int updateByPrimaryKeySelective(PmsProductAttributeCategory record); // 根据主键id更新PmsProductAttributeCategory记录只更新不为null的字段
int updateByPrimaryKey(PmsProductAttributeCategory record); // 根据主键id更新PmsProductAttributeCategory记录
}

@ -1,30 +1,32 @@
package com.macro.mall.mapper;
package com.macro.mall.mapper; // 定义了该接口所属的包名用于Java的包管理
import com.macro.mall.model.PmsProductAttribute;
import com.macro.mall.model.PmsProductAttributeExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.macro.mall.model.PmsProductAttribute; // 导入了PmsProductAttribute实体类用于数据库表的映射
import com.macro.mall.model.PmsProductAttributeExample; // 导入了PmsProductAttributeExample类用于构建查询条件
import java.util.List; // 导入了List接口用于存储查询结果集
import org.apache.ibatis.annotations.Param; // 导入了MyBatis的Param注解用于指定参数名称
public interface PmsProductAttributeMapper {
long countByExample(PmsProductAttributeExample example);
public interface PmsProductAttributeMapper { // 声明了一个MyBatis的Mapper接口用于数据库操作
// 以下方法都是MyBatis映射的方法用于数据库的CRUD操作
int deleteByExample(PmsProductAttributeExample example);
long countByExample(PmsProductAttributeExample example); // 根据example条件统计记录数
int deleteByPrimaryKey(Long id);
int deleteByExample(PmsProductAttributeExample example); // 根据example条件删除记录
int insert(PmsProductAttribute record);
int deleteByPrimaryKey(Long id); // 根据主键id删除记录
int insertSelective(PmsProductAttribute record);
int insert(PmsProductAttribute record); // 插入一条PmsProductAttribute记录
List<PmsProductAttribute> selectByExample(PmsProductAttributeExample example);
int insertSelective(PmsProductAttribute record); // 插入一条PmsProductAttribute记录只插入不为null的字段
PmsProductAttribute selectByPrimaryKey(Long id);
List<PmsProductAttribute> selectByExample(PmsProductAttributeExample example); // 根据example条件查询PmsProductAttribute记录
int updateByExampleSelective(@Param("record") PmsProductAttribute record, @Param("example") PmsProductAttributeExample example);
PmsProductAttribute selectByPrimaryKey(Long id); // 根据主键id查询PmsProductAttribute记录
int updateByExample(@Param("record") PmsProductAttribute record, @Param("example") PmsProductAttributeExample example);
int updateByExampleSelective(@Param("record") PmsProductAttribute record, @Param("example") PmsProductAttributeExample example); // 根据example条件更新PmsProductAttribute记录只更新不为null的字段
int updateByPrimaryKeySelective(PmsProductAttribute record);
int updateByExample(@Param("record") PmsProductAttribute record, @Param("example") PmsProductAttributeExample example); // 根据example条件更新PmsProductAttribute记录
int updateByPrimaryKey(PmsProductAttribute record);
int updateByPrimaryKeySelective(PmsProductAttribute record); // 根据主键id更新PmsProductAttribute记录只更新不为null的字段
int updateByPrimaryKey(PmsProductAttribute record); // 根据主键id更新PmsProductAttribute记录
}

@ -1,30 +1,32 @@
package com.macro.mall.mapper;
package com.macro.mall.mapper; // 定义了该接口所属的包名用于Java的包管理
import com.macro.mall.model.PmsProductAttributeValue;
import com.macro.mall.model.PmsProductAttributeValueExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.macro.mall.model.PmsProductAttributeValue; // 导入了PmsProductAttributeValue实体类用于数据库表的映射
import com.macro.mall.model.PmsProductAttributeValueExample; // 导入了PmsProductAttributeValueExample类用于构建查询条件
import java.util.List; // 导入了List接口用于存储查询结果集
import org.apache.ibatis.annotations.Param; // 导入了MyBatis的Param注解用于指定参数名称
public interface PmsProductAttributeValueMapper {
long countByExample(PmsProductAttributeValueExample example);
public interface PmsProductAttributeValueMapper { // 声明了一个MyBatis的Mapper接口用于数据库操作
// 以下方法都是MyBatis映射的方法用于数据库的CRUD操作
int deleteByExample(PmsProductAttributeValueExample example);
long countByExample(PmsProductAttributeValueExample example); // 根据example条件统计记录数
int deleteByPrimaryKey(Long id);
int deleteByExample(PmsProductAttributeValueExample example); // 根据example条件删除记录
int insert(PmsProductAttributeValue record);
int deleteByPrimaryKey(Long id); // 根据主键id删除记录
int insertSelective(PmsProductAttributeValue record);
int insert(PmsProductAttributeValue record); // 插入一条PmsProductAttributeValue记录
List<PmsProductAttributeValue> selectByExample(PmsProductAttributeValueExample example);
int insertSelective(PmsProductAttributeValue record); // 插入一条PmsProductAttributeValue记录只插入不为null的字段
PmsProductAttributeValue selectByPrimaryKey(Long id);
List<PmsProductAttributeValue> selectByExample(PmsProductAttributeValueExample example); // 根据example条件查询PmsProductAttributeValue记录
int updateByExampleSelective(@Param("record") PmsProductAttributeValue record, @Param("example") PmsProductAttributeValueExample example);
PmsProductAttributeValue selectByPrimaryKey(Long id); // 根据主键id查询PmsProductAttributeValue记录
int updateByExample(@Param("record") PmsProductAttributeValue record, @Param("example") PmsProductAttributeValueExample example);
int updateByExampleSelective(@Param("record") PmsProductAttributeValue record, @Param("example") PmsProductAttributeValueExample example); // 根据example条件更新PmsProductAttributeValue记录只更新不为null的字段
int updateByPrimaryKeySelective(PmsProductAttributeValue record);
int updateByExample(@Param("record") PmsProductAttributeValue record, @Param("example") PmsProductAttributeValueExample example); // 根据example条件更新PmsProductAttributeValue记录
int updateByPrimaryKey(PmsProductAttributeValue record);
int updateByPrimaryKeySelective(PmsProductAttributeValue record); // 根据主键id更新PmsProductAttributeValue记录只更新不为null的字段
int updateByPrimaryKey(PmsProductAttributeValue record); // 根据主键id更新PmsProductAttributeValue记录
}

@ -1,30 +1,32 @@
package com.macro.mall.mapper;
package com.macro.mall.mapper; // 定义了该接口所属的包名用于Java的包管理
import com.macro.mall.model.PmsProductCategoryAttributeRelation;
import com.macro.mall.model.PmsProductCategoryAttributeRelationExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.macro.mall.model.PmsProductCategoryAttributeRelation; // 导入了PmsProductCategoryAttributeRelation实体类用于数据库表的映射
import com.macro.mall.model.PmsProductCategoryAttributeRelationExample; // 导入了PmsProductCategoryAttributeRelationExample类用于构建查询条件
import java.util.List; // 导入了List接口用于存储查询结果集
import org.apache.ibatis.annotations.Param; // 导入了MyBatis的Param注解用于指定参数名称
public interface PmsProductCategoryAttributeRelationMapper {
long countByExample(PmsProductCategoryAttributeRelationExample example);
public interface PmsProductCategoryAttributeRelationMapper { // 声明了一个MyBatis的Mapper接口用于数据库操作
// 以下方法都是MyBatis映射的方法用于数据库的CRUD操作
int deleteByExample(PmsProductCategoryAttributeRelationExample example);
long countByExample(PmsProductCategoryAttributeRelationExample example); // 根据example条件统计记录数
int deleteByPrimaryKey(Long id);
int deleteByExample(PmsProductCategoryAttributeRelationExample example); // 根据example条件删除记录
int insert(PmsProductCategoryAttributeRelation record);
int deleteByPrimaryKey(Long id); // 根据主键id删除记录
int insertSelective(PmsProductCategoryAttributeRelation record);
int insert(PmsProductCategoryAttributeRelation record); // 插入一条PmsProductCategoryAttributeRelation记录
List<PmsProductCategoryAttributeRelation> selectByExample(PmsProductCategoryAttributeRelationExample example);
int insertSelective(PmsProductCategoryAttributeRelation record); // 插入一条PmsProductCategoryAttributeRelation记录只插入不为null的字段
PmsProductCategoryAttributeRelation selectByPrimaryKey(Long id);
List<PmsProductCategoryAttributeRelation> selectByExample(PmsProductCategoryAttributeRelationExample example); // 根据example条件查询PmsProductCategoryAttributeRelation记录
int updateByExampleSelective(@Param("record") PmsProductCategoryAttributeRelation record, @Param("example") PmsProductCategoryAttributeRelationExample example);
PmsProductCategoryAttributeRelation selectByPrimaryKey(Long id); // 根据主键id查询PmsProductCategoryAttributeRelation记录
int updateByExample(@Param("record") PmsProductCategoryAttributeRelation record, @Param("example") PmsProductCategoryAttributeRelationExample example);
int updateByExampleSelective(@Param("record") PmsProductCategoryAttributeRelation record, @Param("example") PmsProductCategoryAttributeRelationExample example); // 根据example条件更新PmsProductCategoryAttributeRelation记录只更新不为null的字段
int updateByPrimaryKeySelective(PmsProductCategoryAttributeRelation record);
int updateByExample(@Param("record") PmsProductCategoryAttributeRelation record, @Param("example") PmsProductCategoryAttributeRelationExample example); // 根据example条件更新PmsProductCategoryAttributeRelation记录
int updateByPrimaryKey(PmsProductCategoryAttributeRelation record);
int updateByPrimaryKeySelective(PmsProductCategoryAttributeRelation record); // 根据主键id更新PmsProductCategoryAttributeRelation记录只更新不为null的字段
int updateByPrimaryKey(PmsProductCategoryAttributeRelation record); // 根据主键id更新PmsProductCategoryAttributeRelation记录
}

@ -1,36 +1,38 @@
package com.macro.mall.mapper;
package com.macro.mall.mapper; // 定义了该接口所属的包名用于Java的包管理
import com.macro.mall.model.PmsProductCategory;
import com.macro.mall.model.PmsProductCategoryExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
import com.macro.mall.model.PmsProductCategory; // 导入了PmsProductCategory实体类用于数据库表的映射
import com.macro.mall.model.PmsProductCategoryExample; // 导入了PmsProductCategoryExample类用于构建查询条件
import java.util.List; // 导入了List接口用于存储查询结果集
import org.apache.ibatis.annotations.Param; // 导入了MyBatis的Param注解用于指定参数名称
public interface PmsProductCategoryMapper {
long countByExample(PmsProductCategoryExample example);
public interface PmsProductCategoryMapper { // 声明了一个MyBatis的Mapper接口用于数据库操作
// 以下方法都是MyBatis映射的方法用于数据库的CRUD操作
int deleteByExample(PmsProductCategoryExample example);
long countByExample(PmsProductCategoryExample example); // 根据example条件统计记录数
int deleteByPrimaryKey(Long id);
int deleteByExample(PmsProductCategoryExample example); // 根据example条件删除记录
int insert(PmsProductCategory record);
int deleteByPrimaryKey(Long id); // 根据主键id删除记录
int insertSelective(PmsProductCategory record);
int insert(PmsProductCategory record); // 插入一条PmsProductCategory记录
List<PmsProductCategory> selectByExampleWithBLOBs(PmsProductCategoryExample example);
int insertSelective(PmsProductCategory record); // 插入一条PmsProductCategory记录只插入不为null的字段
List<PmsProductCategory> selectByExample(PmsProductCategoryExample example);
List<PmsProductCategory> selectByExampleWithBLOBs(PmsProductCategoryExample example); // 根据example条件查询PmsProductCategory记录包括BLOB字段
PmsProductCategory selectByPrimaryKey(Long id);
List<PmsProductCategory> selectByExample(PmsProductCategoryExample example); // 根据example条件查询PmsProductCategory记录不包括BLOB字段
int updateByExampleSelective(@Param("record") PmsProductCategory record, @Param("example") PmsProductCategoryExample example);
PmsProductCategory selectByPrimaryKey(Long id); // 根据主键id查询PmsProductCategory记录
int updateByExampleWithBLOBs(@Param("record") PmsProductCategory record, @Param("example") PmsProductCategoryExample example);
int updateByExampleSelective(@Param("record") PmsProductCategory record, @Param("example") PmsProductCategoryExample example); // 根据example条件更新PmsProductCategory记录只更新不为null的字段
int updateByExample(@Param("record") PmsProductCategory record, @Param("example") PmsProductCategoryExample example);
int updateByExampleWithBLOBs(@Param("record") PmsProductCategory record, @Param("example") PmsProductCategoryExample example); // 根据example条件更新PmsProductCategory记录包括BLOB字段
int updateByPrimaryKeySelective(PmsProductCategory record);
int updateByExample(@Param("record") PmsProductCategory record, @Param("example") PmsProductCategoryExample example); // 根据example条件更新PmsProductCategory记录
int updateByPrimaryKeyWithBLOBs(PmsProductCategory record);
int updateByPrimaryKeySelective(PmsProductCategory record); // 根据主键id更新PmsProductCategory记录只更新不为null的字段
int updateByPrimaryKey(PmsProductCategory record);
int updateByPrimaryKeyWithBLOBs(PmsProductCategory record); // 根据主键id更新PmsProductCategory记录包括BLOB字段
int updateByPrimaryKey(PmsProductCategory record); // 根据主键id更新PmsProductCategory记录
}
Loading…
Cancel
Save