searchTokenSessionId(String keyword, int start, int size, boolean sortType) {
+ return stpLogic.searchTokenSessionId(keyword, start, size, sortType);
+ }
+
+
+ // ------------------- 账号封禁 -------------------
+
+ /**
+ * 封禁:指定账号
+ * 此方法不会直接将此账号id踢下线,如需封禁后立即掉线,请追加调用 StpUtil.logout(id)
+ *
+ * @param loginId 指定账号id
+ * @param time 封禁时间, 单位: 秒 (-1=永久封禁)
+ */
+ public static void disable(Object loginId, long time) {
+ stpLogic.disable(loginId, time);
+ }
+
+ /**
+ * 判断:指定账号是否已被封禁 (true=已被封禁, false=未被封禁)
+ *
+ * @param loginId 账号id
+ * @return /
+ */
+ public static boolean isDisable(Object loginId) {
+ return stpLogic.isDisable(loginId);
+ }
+
+ /**
+ * 校验:指定账号是否已被封禁,如果被封禁则抛出异常
+ *
+ * @param loginId 账号id
+ */
+ public static void checkDisable(Object loginId) {
+ stpLogic.checkDisable(loginId);
+ }
+
+ /**
+ * 获取:指定账号剩余封禁时间,单位:秒(-1=永久封禁,-2=未被封禁)
+ *
+ * @param loginId 账号id
+ * @return /
+ */
+ public static long getDisableTime(Object loginId) {
+ return stpLogic.getDisableTime(loginId);
+ }
+
+ /**
+ * 解封:指定账号
+ *
+ * @param loginId 账号id
+ */
+ public static void untieDisable(Object loginId) {
+ stpLogic.untieDisable(loginId);
+ }
+
+
+ // ------------------- 分类封禁 -------------------
+
+ /**
+ * 封禁:指定账号的指定服务
+ *
此方法不会直接将此账号id踢下线,如需封禁后立即掉线,请追加调用 StpUtil.logout(id)
+ *
+ * @param loginId 指定账号id
+ * @param service 指定服务
+ * @param time 封禁时间, 单位: 秒 (-1=永久封禁)
+ */
+ public static void disable(Object loginId, String service, long time) {
+ stpLogic.disable(loginId, service, time);
+ }
+
+ /**
+ * 判断:指定账号的指定服务 是否已被封禁(true=已被封禁, false=未被封禁)
+ *
+ * @param loginId 账号id
+ * @param service 指定服务
+ * @return /
+ */
+ public static boolean isDisable(Object loginId, String service) {
+ return stpLogic.isDisable(loginId, service);
+ }
+
+ /**
+ * 校验:指定账号 指定服务 是否已被封禁,如果被封禁则抛出异常
+ *
+ * @param loginId 账号id
+ * @param services 指定服务,可以指定多个
+ */
+ public static void checkDisable(Object loginId, String... services) {
+ stpLogic.checkDisable(loginId, services);
+ }
+
+ /**
+ * 获取:指定账号 指定服务 剩余封禁时间,单位:秒(-1=永久封禁,-2=未被封禁)
+ *
+ * @param loginId 账号id
+ * @param service 指定服务
+ * @return see note
+ */
+ public static long getDisableTime(Object loginId, String service) {
+ return stpLogic.getDisableTime(loginId, service);
+ }
+
+ /**
+ * 解封:指定账号、指定服务
+ *
+ * @param loginId 账号id
+ * @param services 指定服务,可以指定多个
+ */
+ public static void untieDisable(Object loginId, String... services) {
+ stpLogic.untieDisable(loginId, services);
+ }
+
+
+ // ------------------- 阶梯封禁 -------------------
+
+ /**
+ * 封禁:指定账号,并指定封禁等级
+ *
+ * @param loginId 指定账号id
+ * @param level 指定封禁等级
+ * @param time 封禁时间, 单位: 秒 (-1=永久封禁)
+ */
+ public static void disableLevel(Object loginId, int level, long time) {
+ stpLogic.disableLevel(loginId, level, time);
+ }
+
+ /**
+ * 封禁:指定账号的指定服务,并指定封禁等级
+ *
+ * @param loginId 指定账号id
+ * @param service 指定封禁服务
+ * @param level 指定封禁等级
+ * @param time 封禁时间, 单位: 秒 (-1=永久封禁)
+ */
+ public static void disableLevel(Object loginId, String service, int level, long time) {
+ stpLogic.disableLevel(loginId, service, level, time);
+ }
+
+ /**
+ * 判断:指定账号是否已被封禁到指定等级
+ *
+ * @param loginId 指定账号id
+ * @param level 指定封禁等级
+ * @return /
+ */
+ public static boolean isDisableLevel(Object loginId, int level) {
+ return stpLogic.isDisableLevel(loginId, level);
+ }
+
+ /**
+ * 判断:指定账号的指定服务,是否已被封禁到指定等级
+ *
+ * @param loginId 指定账号id
+ * @param service 指定封禁服务
+ * @param level 指定封禁等级
+ * @return /
+ */
+ public static boolean isDisableLevel(Object loginId, String service, int level) {
+ return stpLogic.isDisableLevel(loginId, service, level);
+ }
+
+ /**
+ * 校验:指定账号是否已被封禁到指定等级(如果已经达到,则抛出异常)
+ *
+ * @param loginId 指定账号id
+ * @param level 封禁等级 (只有 封禁等级 ≥ 此值 才会抛出异常)
+ */
+ public static void checkDisableLevel(Object loginId, int level) {
+ stpLogic.checkDisableLevel(loginId, level);
+ }
+
+ /**
+ * 校验:指定账号的指定服务,是否已被封禁到指定等级(如果已经达到,则抛出异常)
+ *
+ * @param loginId 指定账号id
+ * @param service 指定封禁服务
+ * @param level 封禁等级 (只有 封禁等级 ≥ 此值 才会抛出异常)
+ */
+ public static void checkDisableLevel(Object loginId, String service, int level) {
+ stpLogic.checkDisableLevel(loginId, service, level);
+ }
+
+ /**
+ * 获取:指定账号被封禁的等级,如果未被封禁则返回-2
+ *
+ * @param loginId 指定账号id
+ * @return /
+ */
+ public static int getDisableLevel(Object loginId) {
+ return stpLogic.getDisableLevel(loginId);
+ }
+
+ /**
+ * 获取:指定账号的 指定服务 被封禁的等级,如果未被封禁则返回-2
+ *
+ * @param loginId 指定账号id
+ * @param service 指定封禁服务
+ * @return /
+ */
+ public static int getDisableLevel(Object loginId, String service) {
+ return stpLogic.getDisableLevel(loginId, service);
+ }
+
+
+ // ------------------- 临时身份切换 -------------------
+
+ /**
+ * 临时切换身份为指定账号id
+ *
+ * @param loginId 指定loginId
+ */
+ public static void switchTo(Object loginId) {
+ stpLogic.switchTo(loginId);
+ }
+
+ /**
+ * 结束临时切换身份
+ */
+ public static void endSwitch() {
+ stpLogic.endSwitch();
+ }
+
+ /**
+ * 判断当前请求是否正处于 [ 身份临时切换 ] 中
+ *
+ * @return /
+ */
+ public static boolean isSwitch() {
+ return stpLogic.isSwitch();
+ }
+
+ /**
+ * 在一个 lambda 代码段里,临时切换身份为指定账号id,lambda 结束后自动恢复
+ *
+ * @param loginId 指定账号id
+ * @param function 要执行的方法
+ */
+ public static void switchTo(Object loginId, SaFunction function) {
+ stpLogic.switchTo(loginId, function);
+ }
+
+
+ // ------------------- 二级认证 -------------------
+
+ /**
+ * 在当前会话 开启二级认证
+ *
+ * @param safeTime 维持时间 (单位: 秒)
+ */
+ public static void openSafe(long safeTime) {
+ stpLogic.openSafe(safeTime);
+ }
+
+ /**
+ * 在当前会话 开启二级认证
+ *
+ * @param service 业务标识
+ * @param safeTime 维持时间 (单位: 秒)
+ */
+ public static void openSafe(String service, long safeTime) {
+ stpLogic.openSafe(service, safeTime);
+ }
+
+ /**
+ * 判断:当前会话是否处于二级认证时间内
+ *
+ * @return true=二级认证已通过, false=尚未进行二级认证或认证已超时
+ */
+ public static boolean isSafe() {
+ return stpLogic.isSafe();
+ }
+
+ /**
+ * 判断:当前会话 是否处于指定业务的二级认证时间内
+ *
+ * @param service 业务标识
+ * @return true=二级认证已通过, false=尚未进行二级认证或认证已超时
+ */
+ public static boolean isSafe(String service) {
+ return stpLogic.isSafe(service);
+ }
+
+ /**
+ * 判断:指定 token 是否处于二级认证时间内
+ *
+ * @param tokenValue Token 值
+ * @param service 业务标识
+ * @return true=二级认证已通过, false=尚未进行二级认证或认证已超时
+ */
+ public static boolean isSafe(String tokenValue, String service) {
+ return stpLogic.isSafe(tokenValue, service);
+ }
+
+ /**
+ * 校验:当前会话是否已通过二级认证,如未通过则抛出异常
+ */
+ public static void checkSafe() {
+ stpLogic.checkSafe();
+ }
+
+ /**
+ * 校验:检查当前会话是否已通过指定业务的二级认证,如未通过则抛出异常
+ *
+ * @param service 业务标识
+ */
+ public static void checkSafe(String service) {
+ stpLogic.checkSafe(service);
+ }
+
+ /**
+ * 获取:当前会话的二级认证剩余有效时间(单位: 秒, 返回-2代表尚未通过二级认证)
+ *
+ * @return 剩余有效时间
+ */
+ public static long getSafeTime() {
+ return stpLogic.getSafeTime();
+ }
+
+ /**
+ * 获取:当前会话的二级认证剩余有效时间(单位: 秒, 返回-2代表尚未通过二级认证)
+ *
+ * @param service 业务标识
+ * @return 剩余有效时间
+ */
+ public static long getSafeTime(String service) {
+ return stpLogic.getSafeTime(service);
+ }
+
+ /**
+ * 在当前会话 结束二级认证
+ */
+ public static void closeSafe() {
+ stpLogic.closeSafe();
+ }
+
+ /**
+ * 在当前会话 结束指定业务标识的二级认证
+ *
+ * @param service 业务标识
+ */
+ public static void closeSafe(String service) {
+ stpLogic.closeSafe(service);
+ }
+
+}
diff --git a/mall-gateway/src/main/resources/application.yml b/mall-gateway/src/main/resources/application.yml
index d253736..7d3b664 100644
--- a/mall-gateway/src/main/resources/application.yml
+++ b/mall-gateway/src/main/resources/application.yml
@@ -41,31 +41,25 @@ spring:
- Path=/mall-demo/**
filters:
- StripPrefix=1
- security:
- oauth2:
- resourceserver:
- jwt:
- jwk-set-uri: 'http://localhost:8201/mall-auth/rsa/publicKey' #配置RSA的公钥访问地址
- redis:
- database: 0
- port: 6379
- host: localhost
- password:
+ data:
+ redis:
+ database: 0
+ port: 6379
+ host: localhost
+ password:
secure:
ignore:
urls: #配置白名单路径
- "/doc.html"
- - "/swagger-resources/**"
- - "/swagger/**"
- - "/*/v2/api-docs"
- - "/*/*.js"
- - "/*/*.css"
- - "/*/*.png"
- - "/*/*.ico"
+ - "/v3/api-docs/swagger-config"
+ - "/*/v3/api-docs/default"
+ - "/*/v3/api-docs"
+ - "/*/swagger-ui/**"
+ - "/webjars/**"
+ - "/favicon.ico"
- "/webjars/**"
- "/actuator/**"
- - "/mall-auth/oauth/token"
- - "/mall-auth/rsa/publicKey"
+ - "/mall-auth/**"
- "/mall-search/**"
- "/mall-portal/sso/login"
- "/mall-portal/sso/register"
@@ -77,11 +71,51 @@ secure:
- "/mall-admin/admin/login"
- "/mall-admin/admin/register"
- "/mall-admin/minio/upload"
-management: #开启SpringBoot Admin的监控
+management:
endpoints:
web:
exposure:
- include: '*'
+ include: '*' #暴露Actuator的监控端点
endpoint:
health:
- show-details: always
+ show-details: always #显示健康的详细信息
+ env:
+ show-values: always #默认Actuator的环境变量会以****显示,这里开启显示
+ configprops:
+ show-values: always #默认Actuator的配置属性会以****显示,这里开启显示
+ info:
+ enabled: true
+knife4j:
+ gateway:
+ enabled: true
+ strategy: discover #网关文档聚合方式:服务发现(自动聚合)
+ discover:
+ version: openapi3 #配置OpenAPI3规范
+ enabled: true #配置开启服务发现
+ excluded-services: mall-monitor #排除监控服务
+ tags-sorter: order #配置tag排序规则
+ operations-sorter: order #配置operation排序规则
+sa-token:
+ # token名称 (同时也是cookie名称)
+ token-name: Authorization
+ # token有效期,单位秒,-1代表永不过期
+ timeout: 2592000
+ # token临时有效期 (指定时间内无操作就视为token过期),单位秒
+ active-timeout: -1
+ # 是否允许同一账号并发登录 (为false时新登录挤掉旧登录)
+ is-concurrent: true
+ # 在多人登录同一账号时,是否共用一个token (为false时每次登录新建一个token)
+ is-share: false
+ # token风格
+ token-style: uuid
+ # 是否输出操作日志
+ is-log: false
+ # 是否从cookie中读取token
+ is-read-cookie: false
+ # 是否从head中读取token
+ is-read-header: true
+ # token前缀
+ token-prefix: Bearer
+ # 是否打印banner
+ is-print: false
+
diff --git a/mall-mbg/pom.xml b/mall-mbg/pom.xml
index 216b043..e53f491 100644
--- a/mall-mbg/pom.xml
+++ b/mall-mbg/pom.xml
@@ -27,6 +27,10 @@
com.github.pagehelper
pagehelper-spring-boot-starter
+
+ org.mybatis.spring.boot
+ mybatis-spring-boot-starter
+
com.alibaba
druid-spring-boot-starter
diff --git a/mall-mbg/src/main/java/com/macro/mall/CommentGenerator.java b/mall-mbg/src/main/java/com/macro/mall/CommentGenerator.java
index dd93ff8..9aca6e8 100644
--- a/mall-mbg/src/main/java/com/macro/mall/CommentGenerator.java
+++ b/mall-mbg/src/main/java/com/macro/mall/CommentGenerator.java
@@ -18,7 +18,7 @@ public class CommentGenerator extends DefaultCommentGenerator {
private boolean addRemarkComments = false;
private static final String EXAMPLE_SUFFIX="Example";
private static final String MAPPER_SUFFIX="Mapper";
- private static final String API_MODEL_PROPERTY_FULL_CLASS_NAME="io.swagger.annotations.ApiModelProperty";
+ private static final String API_MODEL_PROPERTY_FULL_CLASS_NAME="io.swagger.v3.oas.annotations.media.Schema";
/**
* 设置用户配置的参数
@@ -36,7 +36,7 @@ public class CommentGenerator extends DefaultCommentGenerator {
public void addFieldComment(Field field, IntrospectedTable introspectedTable,
IntrospectedColumn introspectedColumn) {
String remarks = introspectedColumn.getRemarks();
- //根据参数和备注信息判断是否添加备注信息
+ //根据参数和备注信息判断是否添加swagger注解信息
if(addRemarkComments&&StringUtility.stringHasValue(remarks)){
// addFieldJavaDoc(field, remarks);
//数据库中特殊字符需要转义
@@ -44,7 +44,7 @@ public class CommentGenerator extends DefaultCommentGenerator {
remarks = remarks.replace("\"","'");
}
//给model的字段添加swagger注解
- field.addJavaDocLine("@ApiModelProperty(value = \""+remarks+"\")");
+ field.addJavaDocLine("@Schema(title = \""+remarks+"\")");
}
}
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsHelpCategoryMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsHelpCategoryMapper.java
index a0fb7b2..f458690 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsHelpCategoryMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsHelpCategoryMapper.java
@@ -12,19 +12,19 @@ public interface CmsHelpCategoryMapper {
int deleteByPrimaryKey(Long id);
- int insert(CmsHelpCategory record);
+ int insert(CmsHelpCategory row);
- int insertSelective(CmsHelpCategory record);
+ int insertSelective(CmsHelpCategory row);
List selectByExample(CmsHelpCategoryExample example);
CmsHelpCategory selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") CmsHelpCategory record, @Param("example") CmsHelpCategoryExample example);
+ int updateByExampleSelective(@Param("row") CmsHelpCategory row, @Param("example") CmsHelpCategoryExample example);
- int updateByExample(@Param("record") CmsHelpCategory record, @Param("example") CmsHelpCategoryExample example);
+ int updateByExample(@Param("row") CmsHelpCategory row, @Param("example") CmsHelpCategoryExample example);
- int updateByPrimaryKeySelective(CmsHelpCategory record);
+ int updateByPrimaryKeySelective(CmsHelpCategory row);
- int updateByPrimaryKey(CmsHelpCategory record);
+ int updateByPrimaryKey(CmsHelpCategory row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsHelpMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsHelpMapper.java
index d29aebc..3e9af18 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsHelpMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsHelpMapper.java
@@ -12,9 +12,9 @@ public interface CmsHelpMapper {
int deleteByPrimaryKey(Long id);
- int insert(CmsHelp record);
+ int insert(CmsHelp row);
- int insertSelective(CmsHelp record);
+ int insertSelective(CmsHelp row);
List selectByExampleWithBLOBs(CmsHelpExample example);
@@ -22,15 +22,15 @@ public interface CmsHelpMapper {
CmsHelp selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") CmsHelp record, @Param("example") CmsHelpExample example);
+ int updateByExampleSelective(@Param("row") CmsHelp row, @Param("example") CmsHelpExample example);
- int updateByExampleWithBLOBs(@Param("record") CmsHelp record, @Param("example") CmsHelpExample example);
+ int updateByExampleWithBLOBs(@Param("row") CmsHelp row, @Param("example") CmsHelpExample example);
- int updateByExample(@Param("record") CmsHelp record, @Param("example") CmsHelpExample example);
+ int updateByExample(@Param("row") CmsHelp row, @Param("example") CmsHelpExample example);
- int updateByPrimaryKeySelective(CmsHelp record);
+ int updateByPrimaryKeySelective(CmsHelp row);
- int updateByPrimaryKeyWithBLOBs(CmsHelp record);
+ int updateByPrimaryKeyWithBLOBs(CmsHelp row);
- int updateByPrimaryKey(CmsHelp record);
+ int updateByPrimaryKey(CmsHelp row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsMemberReportMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsMemberReportMapper.java
index 48979a7..0a1569f 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsMemberReportMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsMemberReportMapper.java
@@ -10,13 +10,13 @@ public interface CmsMemberReportMapper {
int deleteByExample(CmsMemberReportExample example);
- int insert(CmsMemberReport record);
+ int insert(CmsMemberReport row);
- int insertSelective(CmsMemberReport record);
+ int insertSelective(CmsMemberReport row);
List selectByExample(CmsMemberReportExample example);
- int updateByExampleSelective(@Param("record") CmsMemberReport record, @Param("example") CmsMemberReportExample example);
+ int updateByExampleSelective(@Param("row") CmsMemberReport row, @Param("example") CmsMemberReportExample example);
- int updateByExample(@Param("record") CmsMemberReport record, @Param("example") CmsMemberReportExample example);
+ int updateByExample(@Param("row") CmsMemberReport row, @Param("example") CmsMemberReportExample example);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsPrefrenceAreaMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsPrefrenceAreaMapper.java
index 916405f..b148de9 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsPrefrenceAreaMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsPrefrenceAreaMapper.java
@@ -12,9 +12,9 @@ public interface CmsPrefrenceAreaMapper {
int deleteByPrimaryKey(Long id);
- int insert(CmsPrefrenceArea record);
+ int insert(CmsPrefrenceArea row);
- int insertSelective(CmsPrefrenceArea record);
+ int insertSelective(CmsPrefrenceArea row);
List selectByExampleWithBLOBs(CmsPrefrenceAreaExample example);
@@ -22,15 +22,15 @@ public interface CmsPrefrenceAreaMapper {
CmsPrefrenceArea selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") CmsPrefrenceArea record, @Param("example") CmsPrefrenceAreaExample example);
+ int updateByExampleSelective(@Param("row") CmsPrefrenceArea row, @Param("example") CmsPrefrenceAreaExample example);
- int updateByExampleWithBLOBs(@Param("record") CmsPrefrenceArea record, @Param("example") CmsPrefrenceAreaExample example);
+ int updateByExampleWithBLOBs(@Param("row") CmsPrefrenceArea row, @Param("example") CmsPrefrenceAreaExample example);
- int updateByExample(@Param("record") CmsPrefrenceArea record, @Param("example") CmsPrefrenceAreaExample example);
+ int updateByExample(@Param("row") CmsPrefrenceArea row, @Param("example") CmsPrefrenceAreaExample example);
- int updateByPrimaryKeySelective(CmsPrefrenceArea record);
+ int updateByPrimaryKeySelective(CmsPrefrenceArea row);
- int updateByPrimaryKeyWithBLOBs(CmsPrefrenceArea record);
+ int updateByPrimaryKeyWithBLOBs(CmsPrefrenceArea row);
- int updateByPrimaryKey(CmsPrefrenceArea record);
+ int updateByPrimaryKey(CmsPrefrenceArea row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsPrefrenceAreaProductRelationMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsPrefrenceAreaProductRelationMapper.java
index 3ede77a..c31163c 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsPrefrenceAreaProductRelationMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsPrefrenceAreaProductRelationMapper.java
@@ -12,19 +12,19 @@ public interface CmsPrefrenceAreaProductRelationMapper {
int deleteByPrimaryKey(Long id);
- int insert(CmsPrefrenceAreaProductRelation record);
+ int insert(CmsPrefrenceAreaProductRelation row);
- int insertSelective(CmsPrefrenceAreaProductRelation record);
+ int insertSelective(CmsPrefrenceAreaProductRelation row);
List selectByExample(CmsPrefrenceAreaProductRelationExample example);
CmsPrefrenceAreaProductRelation selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") CmsPrefrenceAreaProductRelation record, @Param("example") CmsPrefrenceAreaProductRelationExample example);
+ int updateByExampleSelective(@Param("row") CmsPrefrenceAreaProductRelation row, @Param("example") CmsPrefrenceAreaProductRelationExample example);
- int updateByExample(@Param("record") CmsPrefrenceAreaProductRelation record, @Param("example") CmsPrefrenceAreaProductRelationExample example);
+ int updateByExample(@Param("row") CmsPrefrenceAreaProductRelation row, @Param("example") CmsPrefrenceAreaProductRelationExample example);
- int updateByPrimaryKeySelective(CmsPrefrenceAreaProductRelation record);
+ int updateByPrimaryKeySelective(CmsPrefrenceAreaProductRelation row);
- int updateByPrimaryKey(CmsPrefrenceAreaProductRelation record);
+ int updateByPrimaryKey(CmsPrefrenceAreaProductRelation row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsSubjectCategoryMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsSubjectCategoryMapper.java
index 08d673e..ce783d1 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsSubjectCategoryMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsSubjectCategoryMapper.java
@@ -12,19 +12,19 @@ public interface CmsSubjectCategoryMapper {
int deleteByPrimaryKey(Long id);
- int insert(CmsSubjectCategory record);
+ int insert(CmsSubjectCategory row);
- int insertSelective(CmsSubjectCategory record);
+ int insertSelective(CmsSubjectCategory row);
List selectByExample(CmsSubjectCategoryExample example);
CmsSubjectCategory selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") CmsSubjectCategory record, @Param("example") CmsSubjectCategoryExample example);
+ int updateByExampleSelective(@Param("row") CmsSubjectCategory row, @Param("example") CmsSubjectCategoryExample example);
- int updateByExample(@Param("record") CmsSubjectCategory record, @Param("example") CmsSubjectCategoryExample example);
+ int updateByExample(@Param("row") CmsSubjectCategory row, @Param("example") CmsSubjectCategoryExample example);
- int updateByPrimaryKeySelective(CmsSubjectCategory record);
+ int updateByPrimaryKeySelective(CmsSubjectCategory row);
- int updateByPrimaryKey(CmsSubjectCategory record);
+ int updateByPrimaryKey(CmsSubjectCategory row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsSubjectCommentMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsSubjectCommentMapper.java
index d0eeabe..932c55a 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsSubjectCommentMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsSubjectCommentMapper.java
@@ -12,19 +12,19 @@ public interface CmsSubjectCommentMapper {
int deleteByPrimaryKey(Long id);
- int insert(CmsSubjectComment record);
+ int insert(CmsSubjectComment row);
- int insertSelective(CmsSubjectComment record);
+ int insertSelective(CmsSubjectComment row);
List selectByExample(CmsSubjectCommentExample example);
CmsSubjectComment selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") CmsSubjectComment record, @Param("example") CmsSubjectCommentExample example);
+ int updateByExampleSelective(@Param("row") CmsSubjectComment row, @Param("example") CmsSubjectCommentExample example);
- int updateByExample(@Param("record") CmsSubjectComment record, @Param("example") CmsSubjectCommentExample example);
+ int updateByExample(@Param("row") CmsSubjectComment row, @Param("example") CmsSubjectCommentExample example);
- int updateByPrimaryKeySelective(CmsSubjectComment record);
+ int updateByPrimaryKeySelective(CmsSubjectComment row);
- int updateByPrimaryKey(CmsSubjectComment record);
+ int updateByPrimaryKey(CmsSubjectComment row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsSubjectMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsSubjectMapper.java
index eeb679c..499591f 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsSubjectMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsSubjectMapper.java
@@ -12,9 +12,9 @@ public interface CmsSubjectMapper {
int deleteByPrimaryKey(Long id);
- int insert(CmsSubject record);
+ int insert(CmsSubject row);
- int insertSelective(CmsSubject record);
+ int insertSelective(CmsSubject row);
List selectByExampleWithBLOBs(CmsSubjectExample example);
@@ -22,15 +22,15 @@ public interface CmsSubjectMapper {
CmsSubject selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") CmsSubject record, @Param("example") CmsSubjectExample example);
+ int updateByExampleSelective(@Param("row") CmsSubject row, @Param("example") CmsSubjectExample example);
- int updateByExampleWithBLOBs(@Param("record") CmsSubject record, @Param("example") CmsSubjectExample example);
+ int updateByExampleWithBLOBs(@Param("row") CmsSubject row, @Param("example") CmsSubjectExample example);
- int updateByExample(@Param("record") CmsSubject record, @Param("example") CmsSubjectExample example);
+ int updateByExample(@Param("row") CmsSubject row, @Param("example") CmsSubjectExample example);
- int updateByPrimaryKeySelective(CmsSubject record);
+ int updateByPrimaryKeySelective(CmsSubject row);
- int updateByPrimaryKeyWithBLOBs(CmsSubject record);
+ int updateByPrimaryKeyWithBLOBs(CmsSubject row);
- int updateByPrimaryKey(CmsSubject record);
+ int updateByPrimaryKey(CmsSubject row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsSubjectProductRelationMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsSubjectProductRelationMapper.java
index ccff433..a627855 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsSubjectProductRelationMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsSubjectProductRelationMapper.java
@@ -12,19 +12,19 @@ public interface CmsSubjectProductRelationMapper {
int deleteByPrimaryKey(Long id);
- int insert(CmsSubjectProductRelation record);
+ int insert(CmsSubjectProductRelation row);
- int insertSelective(CmsSubjectProductRelation record);
+ int insertSelective(CmsSubjectProductRelation row);
List selectByExample(CmsSubjectProductRelationExample example);
CmsSubjectProductRelation selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") CmsSubjectProductRelation record, @Param("example") CmsSubjectProductRelationExample example);
+ int updateByExampleSelective(@Param("row") CmsSubjectProductRelation row, @Param("example") CmsSubjectProductRelationExample example);
- int updateByExample(@Param("record") CmsSubjectProductRelation record, @Param("example") CmsSubjectProductRelationExample example);
+ int updateByExample(@Param("row") CmsSubjectProductRelation row, @Param("example") CmsSubjectProductRelationExample example);
- int updateByPrimaryKeySelective(CmsSubjectProductRelation record);
+ int updateByPrimaryKeySelective(CmsSubjectProductRelation row);
- int updateByPrimaryKey(CmsSubjectProductRelation record);
+ int updateByPrimaryKey(CmsSubjectProductRelation row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsTopicCategoryMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsTopicCategoryMapper.java
index d6e6b1e..ada71c3 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsTopicCategoryMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsTopicCategoryMapper.java
@@ -12,19 +12,19 @@ public interface CmsTopicCategoryMapper {
int deleteByPrimaryKey(Long id);
- int insert(CmsTopicCategory record);
+ int insert(CmsTopicCategory row);
- int insertSelective(CmsTopicCategory record);
+ int insertSelective(CmsTopicCategory row);
List selectByExample(CmsTopicCategoryExample example);
CmsTopicCategory selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") CmsTopicCategory record, @Param("example") CmsTopicCategoryExample example);
+ int updateByExampleSelective(@Param("row") CmsTopicCategory row, @Param("example") CmsTopicCategoryExample example);
- int updateByExample(@Param("record") CmsTopicCategory record, @Param("example") CmsTopicCategoryExample example);
+ int updateByExample(@Param("row") CmsTopicCategory row, @Param("example") CmsTopicCategoryExample example);
- int updateByPrimaryKeySelective(CmsTopicCategory record);
+ int updateByPrimaryKeySelective(CmsTopicCategory row);
- int updateByPrimaryKey(CmsTopicCategory record);
+ int updateByPrimaryKey(CmsTopicCategory row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsTopicCommentMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsTopicCommentMapper.java
index 82fde9a..197bf35 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsTopicCommentMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsTopicCommentMapper.java
@@ -12,19 +12,19 @@ public interface CmsTopicCommentMapper {
int deleteByPrimaryKey(Long id);
- int insert(CmsTopicComment record);
+ int insert(CmsTopicComment row);
- int insertSelective(CmsTopicComment record);
+ int insertSelective(CmsTopicComment row);
List selectByExample(CmsTopicCommentExample example);
CmsTopicComment selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") CmsTopicComment record, @Param("example") CmsTopicCommentExample example);
+ int updateByExampleSelective(@Param("row") CmsTopicComment row, @Param("example") CmsTopicCommentExample example);
- int updateByExample(@Param("record") CmsTopicComment record, @Param("example") CmsTopicCommentExample example);
+ int updateByExample(@Param("row") CmsTopicComment row, @Param("example") CmsTopicCommentExample example);
- int updateByPrimaryKeySelective(CmsTopicComment record);
+ int updateByPrimaryKeySelective(CmsTopicComment row);
- int updateByPrimaryKey(CmsTopicComment record);
+ int updateByPrimaryKey(CmsTopicComment row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsTopicMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsTopicMapper.java
index 7411b0c..fdbd1aa 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/CmsTopicMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/CmsTopicMapper.java
@@ -12,9 +12,9 @@ public interface CmsTopicMapper {
int deleteByPrimaryKey(Long id);
- int insert(CmsTopic record);
+ int insert(CmsTopic row);
- int insertSelective(CmsTopic record);
+ int insertSelective(CmsTopic row);
List selectByExampleWithBLOBs(CmsTopicExample example);
@@ -22,15 +22,15 @@ public interface CmsTopicMapper {
CmsTopic selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") CmsTopic record, @Param("example") CmsTopicExample example);
+ int updateByExampleSelective(@Param("row") CmsTopic row, @Param("example") CmsTopicExample example);
- int updateByExampleWithBLOBs(@Param("record") CmsTopic record, @Param("example") CmsTopicExample example);
+ int updateByExampleWithBLOBs(@Param("row") CmsTopic row, @Param("example") CmsTopicExample example);
- int updateByExample(@Param("record") CmsTopic record, @Param("example") CmsTopicExample example);
+ int updateByExample(@Param("row") CmsTopic row, @Param("example") CmsTopicExample example);
- int updateByPrimaryKeySelective(CmsTopic record);
+ int updateByPrimaryKeySelective(CmsTopic row);
- int updateByPrimaryKeyWithBLOBs(CmsTopic record);
+ int updateByPrimaryKeyWithBLOBs(CmsTopic row);
- int updateByPrimaryKey(CmsTopic record);
+ int updateByPrimaryKey(CmsTopic row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/OmsCartItemMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/OmsCartItemMapper.java
index 7d6d6f1..c305630 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/OmsCartItemMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/OmsCartItemMapper.java
@@ -12,19 +12,19 @@ public interface OmsCartItemMapper {
int deleteByPrimaryKey(Long id);
- int insert(OmsCartItem record);
+ int insert(OmsCartItem row);
- int insertSelective(OmsCartItem record);
+ int insertSelective(OmsCartItem row);
List selectByExample(OmsCartItemExample example);
OmsCartItem selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") OmsCartItem record, @Param("example") OmsCartItemExample example);
+ int updateByExampleSelective(@Param("row") OmsCartItem row, @Param("example") OmsCartItemExample example);
- int updateByExample(@Param("record") OmsCartItem record, @Param("example") OmsCartItemExample example);
+ int updateByExample(@Param("row") OmsCartItem row, @Param("example") OmsCartItemExample example);
- int updateByPrimaryKeySelective(OmsCartItem record);
+ int updateByPrimaryKeySelective(OmsCartItem row);
- int updateByPrimaryKey(OmsCartItem record);
+ int updateByPrimaryKey(OmsCartItem row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/OmsCompanyAddressMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/OmsCompanyAddressMapper.java
index b2345b8..e3d6d63 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/OmsCompanyAddressMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/OmsCompanyAddressMapper.java
@@ -12,19 +12,19 @@ public interface OmsCompanyAddressMapper {
int deleteByPrimaryKey(Long id);
- int insert(OmsCompanyAddress record);
+ int insert(OmsCompanyAddress row);
- int insertSelective(OmsCompanyAddress record);
+ int insertSelective(OmsCompanyAddress row);
List selectByExample(OmsCompanyAddressExample example);
OmsCompanyAddress selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") OmsCompanyAddress record, @Param("example") OmsCompanyAddressExample example);
+ int updateByExampleSelective(@Param("row") OmsCompanyAddress row, @Param("example") OmsCompanyAddressExample example);
- int updateByExample(@Param("record") OmsCompanyAddress record, @Param("example") OmsCompanyAddressExample example);
+ int updateByExample(@Param("row") OmsCompanyAddress row, @Param("example") OmsCompanyAddressExample example);
- int updateByPrimaryKeySelective(OmsCompanyAddress record);
+ int updateByPrimaryKeySelective(OmsCompanyAddress row);
- int updateByPrimaryKey(OmsCompanyAddress record);
+ int updateByPrimaryKey(OmsCompanyAddress row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderItemMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderItemMapper.java
index 026e13e..78c8034 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderItemMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderItemMapper.java
@@ -12,19 +12,19 @@ public interface OmsOrderItemMapper {
int deleteByPrimaryKey(Long id);
- int insert(OmsOrderItem record);
+ int insert(OmsOrderItem row);
- int insertSelective(OmsOrderItem record);
+ int insertSelective(OmsOrderItem row);
List selectByExample(OmsOrderItemExample example);
OmsOrderItem selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") OmsOrderItem record, @Param("example") OmsOrderItemExample example);
+ int updateByExampleSelective(@Param("row") OmsOrderItem row, @Param("example") OmsOrderItemExample example);
- int updateByExample(@Param("record") OmsOrderItem record, @Param("example") OmsOrderItemExample example);
+ int updateByExample(@Param("row") OmsOrderItem row, @Param("example") OmsOrderItemExample example);
- int updateByPrimaryKeySelective(OmsOrderItem record);
+ int updateByPrimaryKeySelective(OmsOrderItem row);
- int updateByPrimaryKey(OmsOrderItem record);
+ int updateByPrimaryKey(OmsOrderItem row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderMapper.java
index 9379cf3..88433ab 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderMapper.java
@@ -12,19 +12,19 @@ public interface OmsOrderMapper {
int deleteByPrimaryKey(Long id);
- int insert(OmsOrder record);
+ int insert(OmsOrder row);
- int insertSelective(OmsOrder record);
+ int insertSelective(OmsOrder row);
List selectByExample(OmsOrderExample example);
OmsOrder selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") OmsOrder record, @Param("example") OmsOrderExample example);
+ int updateByExampleSelective(@Param("row") OmsOrder row, @Param("example") OmsOrderExample example);
- int updateByExample(@Param("record") OmsOrder record, @Param("example") OmsOrderExample example);
+ int updateByExample(@Param("row") OmsOrder row, @Param("example") OmsOrderExample example);
- int updateByPrimaryKeySelective(OmsOrder record);
+ int updateByPrimaryKeySelective(OmsOrder row);
- int updateByPrimaryKey(OmsOrder record);
+ int updateByPrimaryKey(OmsOrder row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderOperateHistoryMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderOperateHistoryMapper.java
index 20e445a..4a98317 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderOperateHistoryMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderOperateHistoryMapper.java
@@ -12,19 +12,19 @@ public interface OmsOrderOperateHistoryMapper {
int deleteByPrimaryKey(Long id);
- int insert(OmsOrderOperateHistory record);
+ int insert(OmsOrderOperateHistory row);
- int insertSelective(OmsOrderOperateHistory record);
+ int insertSelective(OmsOrderOperateHistory row);
List selectByExample(OmsOrderOperateHistoryExample example);
OmsOrderOperateHistory selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") OmsOrderOperateHistory record, @Param("example") OmsOrderOperateHistoryExample example);
+ int updateByExampleSelective(@Param("row") OmsOrderOperateHistory row, @Param("example") OmsOrderOperateHistoryExample example);
- int updateByExample(@Param("record") OmsOrderOperateHistory record, @Param("example") OmsOrderOperateHistoryExample example);
+ int updateByExample(@Param("row") OmsOrderOperateHistory row, @Param("example") OmsOrderOperateHistoryExample example);
- int updateByPrimaryKeySelective(OmsOrderOperateHistory record);
+ int updateByPrimaryKeySelective(OmsOrderOperateHistory row);
- int updateByPrimaryKey(OmsOrderOperateHistory record);
+ int updateByPrimaryKey(OmsOrderOperateHistory row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderReturnApplyMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderReturnApplyMapper.java
index 660c747..c24faeb 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderReturnApplyMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderReturnApplyMapper.java
@@ -12,19 +12,19 @@ public interface OmsOrderReturnApplyMapper {
int deleteByPrimaryKey(Long id);
- int insert(OmsOrderReturnApply record);
+ int insert(OmsOrderReturnApply row);
- int insertSelective(OmsOrderReturnApply record);
+ int insertSelective(OmsOrderReturnApply row);
List selectByExample(OmsOrderReturnApplyExample example);
OmsOrderReturnApply selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") OmsOrderReturnApply record, @Param("example") OmsOrderReturnApplyExample example);
+ int updateByExampleSelective(@Param("row") OmsOrderReturnApply row, @Param("example") OmsOrderReturnApplyExample example);
- int updateByExample(@Param("record") OmsOrderReturnApply record, @Param("example") OmsOrderReturnApplyExample example);
+ int updateByExample(@Param("row") OmsOrderReturnApply row, @Param("example") OmsOrderReturnApplyExample example);
- int updateByPrimaryKeySelective(OmsOrderReturnApply record);
+ int updateByPrimaryKeySelective(OmsOrderReturnApply row);
- int updateByPrimaryKey(OmsOrderReturnApply record);
+ int updateByPrimaryKey(OmsOrderReturnApply row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderReturnReasonMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderReturnReasonMapper.java
index d980d42..d2c42ef 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderReturnReasonMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderReturnReasonMapper.java
@@ -12,19 +12,19 @@ public interface OmsOrderReturnReasonMapper {
int deleteByPrimaryKey(Long id);
- int insert(OmsOrderReturnReason record);
+ int insert(OmsOrderReturnReason row);
- int insertSelective(OmsOrderReturnReason record);
+ int insertSelective(OmsOrderReturnReason row);
List selectByExample(OmsOrderReturnReasonExample example);
OmsOrderReturnReason selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") OmsOrderReturnReason record, @Param("example") OmsOrderReturnReasonExample example);
+ int updateByExampleSelective(@Param("row") OmsOrderReturnReason row, @Param("example") OmsOrderReturnReasonExample example);
- int updateByExample(@Param("record") OmsOrderReturnReason record, @Param("example") OmsOrderReturnReasonExample example);
+ int updateByExample(@Param("row") OmsOrderReturnReason row, @Param("example") OmsOrderReturnReasonExample example);
- int updateByPrimaryKeySelective(OmsOrderReturnReason record);
+ int updateByPrimaryKeySelective(OmsOrderReturnReason row);
- int updateByPrimaryKey(OmsOrderReturnReason record);
+ int updateByPrimaryKey(OmsOrderReturnReason row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderSettingMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderSettingMapper.java
index e555cb8..c2fc854 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderSettingMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/OmsOrderSettingMapper.java
@@ -12,19 +12,19 @@ public interface OmsOrderSettingMapper {
int deleteByPrimaryKey(Long id);
- int insert(OmsOrderSetting record);
+ int insert(OmsOrderSetting row);
- int insertSelective(OmsOrderSetting record);
+ int insertSelective(OmsOrderSetting row);
List selectByExample(OmsOrderSettingExample example);
OmsOrderSetting selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") OmsOrderSetting record, @Param("example") OmsOrderSettingExample example);
+ int updateByExampleSelective(@Param("row") OmsOrderSetting row, @Param("example") OmsOrderSettingExample example);
- int updateByExample(@Param("record") OmsOrderSetting record, @Param("example") OmsOrderSettingExample example);
+ int updateByExample(@Param("row") OmsOrderSetting row, @Param("example") OmsOrderSettingExample example);
- int updateByPrimaryKeySelective(OmsOrderSetting record);
+ int updateByPrimaryKeySelective(OmsOrderSetting row);
- int updateByPrimaryKey(OmsOrderSetting record);
+ int updateByPrimaryKey(OmsOrderSetting row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsAlbumMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsAlbumMapper.java
index d8172ab..1d842be 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsAlbumMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsAlbumMapper.java
@@ -12,19 +12,19 @@ public interface PmsAlbumMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsAlbum record);
+ int insert(PmsAlbum row);
- int insertSelective(PmsAlbum record);
+ int insertSelective(PmsAlbum row);
List selectByExample(PmsAlbumExample example);
PmsAlbum selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsAlbum record, @Param("example") PmsAlbumExample example);
+ int updateByExampleSelective(@Param("row") PmsAlbum row, @Param("example") PmsAlbumExample example);
- int updateByExample(@Param("record") PmsAlbum record, @Param("example") PmsAlbumExample example);
+ int updateByExample(@Param("row") PmsAlbum row, @Param("example") PmsAlbumExample example);
- int updateByPrimaryKeySelective(PmsAlbum record);
+ int updateByPrimaryKeySelective(PmsAlbum row);
- int updateByPrimaryKey(PmsAlbum record);
+ int updateByPrimaryKey(PmsAlbum row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsAlbumPicMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsAlbumPicMapper.java
index 0d04ecf..93ba7fa 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsAlbumPicMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsAlbumPicMapper.java
@@ -12,19 +12,19 @@ public interface PmsAlbumPicMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsAlbumPic record);
+ int insert(PmsAlbumPic row);
- int insertSelective(PmsAlbumPic record);
+ int insertSelective(PmsAlbumPic row);
List selectByExample(PmsAlbumPicExample example);
PmsAlbumPic selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsAlbumPic record, @Param("example") PmsAlbumPicExample example);
+ int updateByExampleSelective(@Param("row") PmsAlbumPic row, @Param("example") PmsAlbumPicExample example);
- int updateByExample(@Param("record") PmsAlbumPic record, @Param("example") PmsAlbumPicExample example);
+ int updateByExample(@Param("row") PmsAlbumPic row, @Param("example") PmsAlbumPicExample example);
- int updateByPrimaryKeySelective(PmsAlbumPic record);
+ int updateByPrimaryKeySelective(PmsAlbumPic row);
- int updateByPrimaryKey(PmsAlbumPic record);
+ int updateByPrimaryKey(PmsAlbumPic row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsBrandMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsBrandMapper.java
index e00c2ad..948d139 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsBrandMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsBrandMapper.java
@@ -12,9 +12,9 @@ public interface PmsBrandMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsBrand record);
+ int insert(PmsBrand row);
- int insertSelective(PmsBrand record);
+ int insertSelective(PmsBrand row);
List selectByExampleWithBLOBs(PmsBrandExample example);
@@ -22,15 +22,15 @@ public interface PmsBrandMapper {
PmsBrand selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsBrand record, @Param("example") PmsBrandExample example);
+ int updateByExampleSelective(@Param("row") PmsBrand row, @Param("example") PmsBrandExample example);
- int updateByExampleWithBLOBs(@Param("record") PmsBrand record, @Param("example") PmsBrandExample example);
+ int updateByExampleWithBLOBs(@Param("row") PmsBrand row, @Param("example") PmsBrandExample example);
- int updateByExample(@Param("record") PmsBrand record, @Param("example") PmsBrandExample example);
+ int updateByExample(@Param("row") PmsBrand row, @Param("example") PmsBrandExample example);
- int updateByPrimaryKeySelective(PmsBrand record);
+ int updateByPrimaryKeySelective(PmsBrand row);
- int updateByPrimaryKeyWithBLOBs(PmsBrand record);
+ int updateByPrimaryKeyWithBLOBs(PmsBrand row);
- int updateByPrimaryKey(PmsBrand record);
+ int updateByPrimaryKey(PmsBrand row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsCommentMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsCommentMapper.java
index fe1f7e8..934c698 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsCommentMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsCommentMapper.java
@@ -12,9 +12,9 @@ public interface PmsCommentMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsComment record);
+ int insert(PmsComment row);
- int insertSelective(PmsComment record);
+ int insertSelective(PmsComment row);
List selectByExampleWithBLOBs(PmsCommentExample example);
@@ -22,15 +22,15 @@ public interface PmsCommentMapper {
PmsComment selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsComment record, @Param("example") PmsCommentExample example);
+ int updateByExampleSelective(@Param("row") PmsComment row, @Param("example") PmsCommentExample example);
- int updateByExampleWithBLOBs(@Param("record") PmsComment record, @Param("example") PmsCommentExample example);
+ int updateByExampleWithBLOBs(@Param("row") PmsComment row, @Param("example") PmsCommentExample example);
- int updateByExample(@Param("record") PmsComment record, @Param("example") PmsCommentExample example);
+ int updateByExample(@Param("row") PmsComment row, @Param("example") PmsCommentExample example);
- int updateByPrimaryKeySelective(PmsComment record);
+ int updateByPrimaryKeySelective(PmsComment row);
- int updateByPrimaryKeyWithBLOBs(PmsComment record);
+ int updateByPrimaryKeyWithBLOBs(PmsComment row);
- int updateByPrimaryKey(PmsComment record);
+ int updateByPrimaryKey(PmsComment row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsCommentReplayMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsCommentReplayMapper.java
index 2dfbf8e..a159051 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsCommentReplayMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsCommentReplayMapper.java
@@ -12,19 +12,19 @@ public interface PmsCommentReplayMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsCommentReplay record);
+ int insert(PmsCommentReplay row);
- int insertSelective(PmsCommentReplay record);
+ int insertSelective(PmsCommentReplay row);
List selectByExample(PmsCommentReplayExample example);
PmsCommentReplay selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsCommentReplay record, @Param("example") PmsCommentReplayExample example);
+ int updateByExampleSelective(@Param("row") PmsCommentReplay row, @Param("example") PmsCommentReplayExample example);
- int updateByExample(@Param("record") PmsCommentReplay record, @Param("example") PmsCommentReplayExample example);
+ int updateByExample(@Param("row") PmsCommentReplay row, @Param("example") PmsCommentReplayExample example);
- int updateByPrimaryKeySelective(PmsCommentReplay record);
+ int updateByPrimaryKeySelective(PmsCommentReplay row);
- int updateByPrimaryKey(PmsCommentReplay record);
+ int updateByPrimaryKey(PmsCommentReplay row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsFeightTemplateMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsFeightTemplateMapper.java
index 241b18e..15e7f12 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsFeightTemplateMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsFeightTemplateMapper.java
@@ -12,19 +12,19 @@ public interface PmsFeightTemplateMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsFeightTemplate record);
+ int insert(PmsFeightTemplate row);
- int insertSelective(PmsFeightTemplate record);
+ int insertSelective(PmsFeightTemplate row);
List selectByExample(PmsFeightTemplateExample example);
PmsFeightTemplate selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsFeightTemplate record, @Param("example") PmsFeightTemplateExample example);
+ int updateByExampleSelective(@Param("row") PmsFeightTemplate row, @Param("example") PmsFeightTemplateExample example);
- int updateByExample(@Param("record") PmsFeightTemplate record, @Param("example") PmsFeightTemplateExample example);
+ int updateByExample(@Param("row") PmsFeightTemplate row, @Param("example") PmsFeightTemplateExample example);
- int updateByPrimaryKeySelective(PmsFeightTemplate record);
+ int updateByPrimaryKeySelective(PmsFeightTemplate row);
- int updateByPrimaryKey(PmsFeightTemplate record);
+ int updateByPrimaryKey(PmsFeightTemplate row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsMemberPriceMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsMemberPriceMapper.java
index d96607d..8394a17 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsMemberPriceMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsMemberPriceMapper.java
@@ -12,19 +12,19 @@ public interface PmsMemberPriceMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsMemberPrice record);
+ int insert(PmsMemberPrice row);
- int insertSelective(PmsMemberPrice record);
+ int insertSelective(PmsMemberPrice row);
List selectByExample(PmsMemberPriceExample example);
PmsMemberPrice selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsMemberPrice record, @Param("example") PmsMemberPriceExample example);
+ int updateByExampleSelective(@Param("row") PmsMemberPrice row, @Param("example") PmsMemberPriceExample example);
- int updateByExample(@Param("record") PmsMemberPrice record, @Param("example") PmsMemberPriceExample example);
+ int updateByExample(@Param("row") PmsMemberPrice row, @Param("example") PmsMemberPriceExample example);
- int updateByPrimaryKeySelective(PmsMemberPrice record);
+ int updateByPrimaryKeySelective(PmsMemberPrice row);
- int updateByPrimaryKey(PmsMemberPrice record);
+ int updateByPrimaryKey(PmsMemberPrice row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductAttributeCategoryMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductAttributeCategoryMapper.java
index 606f8a2..10624c5 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductAttributeCategoryMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductAttributeCategoryMapper.java
@@ -12,19 +12,19 @@ public interface PmsProductAttributeCategoryMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsProductAttributeCategory record);
+ int insert(PmsProductAttributeCategory row);
- int insertSelective(PmsProductAttributeCategory record);
+ int insertSelective(PmsProductAttributeCategory row);
List selectByExample(PmsProductAttributeCategoryExample example);
PmsProductAttributeCategory selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsProductAttributeCategory record, @Param("example") PmsProductAttributeCategoryExample example);
+ int updateByExampleSelective(@Param("row") PmsProductAttributeCategory row, @Param("example") PmsProductAttributeCategoryExample example);
- int updateByExample(@Param("record") PmsProductAttributeCategory record, @Param("example") PmsProductAttributeCategoryExample example);
+ int updateByExample(@Param("row") PmsProductAttributeCategory row, @Param("example") PmsProductAttributeCategoryExample example);
- int updateByPrimaryKeySelective(PmsProductAttributeCategory record);
+ int updateByPrimaryKeySelective(PmsProductAttributeCategory row);
- int updateByPrimaryKey(PmsProductAttributeCategory record);
+ int updateByPrimaryKey(PmsProductAttributeCategory row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductAttributeMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductAttributeMapper.java
index 157b854..503751d 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductAttributeMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductAttributeMapper.java
@@ -12,19 +12,19 @@ public interface PmsProductAttributeMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsProductAttribute record);
+ int insert(PmsProductAttribute row);
- int insertSelective(PmsProductAttribute record);
+ int insertSelective(PmsProductAttribute row);
List selectByExample(PmsProductAttributeExample example);
PmsProductAttribute selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsProductAttribute record, @Param("example") PmsProductAttributeExample example);
+ int updateByExampleSelective(@Param("row") PmsProductAttribute row, @Param("example") PmsProductAttributeExample example);
- int updateByExample(@Param("record") PmsProductAttribute record, @Param("example") PmsProductAttributeExample example);
+ int updateByExample(@Param("row") PmsProductAttribute row, @Param("example") PmsProductAttributeExample example);
- int updateByPrimaryKeySelective(PmsProductAttribute record);
+ int updateByPrimaryKeySelective(PmsProductAttribute row);
- int updateByPrimaryKey(PmsProductAttribute record);
+ int updateByPrimaryKey(PmsProductAttribute row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductAttributeValueMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductAttributeValueMapper.java
index eee5c07..bd2406c 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductAttributeValueMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductAttributeValueMapper.java
@@ -12,19 +12,19 @@ public interface PmsProductAttributeValueMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsProductAttributeValue record);
+ int insert(PmsProductAttributeValue row);
- int insertSelective(PmsProductAttributeValue record);
+ int insertSelective(PmsProductAttributeValue row);
List selectByExample(PmsProductAttributeValueExample example);
PmsProductAttributeValue selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsProductAttributeValue record, @Param("example") PmsProductAttributeValueExample example);
+ int updateByExampleSelective(@Param("row") PmsProductAttributeValue row, @Param("example") PmsProductAttributeValueExample example);
- int updateByExample(@Param("record") PmsProductAttributeValue record, @Param("example") PmsProductAttributeValueExample example);
+ int updateByExample(@Param("row") PmsProductAttributeValue row, @Param("example") PmsProductAttributeValueExample example);
- int updateByPrimaryKeySelective(PmsProductAttributeValue record);
+ int updateByPrimaryKeySelective(PmsProductAttributeValue row);
- int updateByPrimaryKey(PmsProductAttributeValue record);
+ int updateByPrimaryKey(PmsProductAttributeValue row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductCategoryAttributeRelationMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductCategoryAttributeRelationMapper.java
index 6311f7c..7d604af 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductCategoryAttributeRelationMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductCategoryAttributeRelationMapper.java
@@ -12,19 +12,19 @@ public interface PmsProductCategoryAttributeRelationMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsProductCategoryAttributeRelation record);
+ int insert(PmsProductCategoryAttributeRelation row);
- int insertSelective(PmsProductCategoryAttributeRelation record);
+ int insertSelective(PmsProductCategoryAttributeRelation row);
List selectByExample(PmsProductCategoryAttributeRelationExample example);
PmsProductCategoryAttributeRelation selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsProductCategoryAttributeRelation record, @Param("example") PmsProductCategoryAttributeRelationExample example);
+ int updateByExampleSelective(@Param("row") PmsProductCategoryAttributeRelation row, @Param("example") PmsProductCategoryAttributeRelationExample example);
- int updateByExample(@Param("record") PmsProductCategoryAttributeRelation record, @Param("example") PmsProductCategoryAttributeRelationExample example);
+ int updateByExample(@Param("row") PmsProductCategoryAttributeRelation row, @Param("example") PmsProductCategoryAttributeRelationExample example);
- int updateByPrimaryKeySelective(PmsProductCategoryAttributeRelation record);
+ int updateByPrimaryKeySelective(PmsProductCategoryAttributeRelation row);
- int updateByPrimaryKey(PmsProductCategoryAttributeRelation record);
+ int updateByPrimaryKey(PmsProductCategoryAttributeRelation row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductCategoryMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductCategoryMapper.java
index 3e35c2a..f933406 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductCategoryMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductCategoryMapper.java
@@ -12,9 +12,9 @@ public interface PmsProductCategoryMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsProductCategory record);
+ int insert(PmsProductCategory row);
- int insertSelective(PmsProductCategory record);
+ int insertSelective(PmsProductCategory row);
List selectByExampleWithBLOBs(PmsProductCategoryExample example);
@@ -22,15 +22,15 @@ public interface PmsProductCategoryMapper {
PmsProductCategory selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsProductCategory record, @Param("example") PmsProductCategoryExample example);
+ int updateByExampleSelective(@Param("row") PmsProductCategory row, @Param("example") PmsProductCategoryExample example);
- int updateByExampleWithBLOBs(@Param("record") PmsProductCategory record, @Param("example") PmsProductCategoryExample example);
+ int updateByExampleWithBLOBs(@Param("row") PmsProductCategory row, @Param("example") PmsProductCategoryExample example);
- int updateByExample(@Param("record") PmsProductCategory record, @Param("example") PmsProductCategoryExample example);
+ int updateByExample(@Param("row") PmsProductCategory row, @Param("example") PmsProductCategoryExample example);
- int updateByPrimaryKeySelective(PmsProductCategory record);
+ int updateByPrimaryKeySelective(PmsProductCategory row);
- int updateByPrimaryKeyWithBLOBs(PmsProductCategory record);
+ int updateByPrimaryKeyWithBLOBs(PmsProductCategory row);
- int updateByPrimaryKey(PmsProductCategory record);
+ int updateByPrimaryKey(PmsProductCategory row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductFullReductionMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductFullReductionMapper.java
index 193aab3..3303567 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductFullReductionMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductFullReductionMapper.java
@@ -12,19 +12,19 @@ public interface PmsProductFullReductionMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsProductFullReduction record);
+ int insert(PmsProductFullReduction row);
- int insertSelective(PmsProductFullReduction record);
+ int insertSelective(PmsProductFullReduction row);
List selectByExample(PmsProductFullReductionExample example);
PmsProductFullReduction selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsProductFullReduction record, @Param("example") PmsProductFullReductionExample example);
+ int updateByExampleSelective(@Param("row") PmsProductFullReduction row, @Param("example") PmsProductFullReductionExample example);
- int updateByExample(@Param("record") PmsProductFullReduction record, @Param("example") PmsProductFullReductionExample example);
+ int updateByExample(@Param("row") PmsProductFullReduction row, @Param("example") PmsProductFullReductionExample example);
- int updateByPrimaryKeySelective(PmsProductFullReduction record);
+ int updateByPrimaryKeySelective(PmsProductFullReduction row);
- int updateByPrimaryKey(PmsProductFullReduction record);
+ int updateByPrimaryKey(PmsProductFullReduction row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductLadderMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductLadderMapper.java
index e2167aa..9738f3d 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductLadderMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductLadderMapper.java
@@ -12,19 +12,19 @@ public interface PmsProductLadderMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsProductLadder record);
+ int insert(PmsProductLadder row);
- int insertSelective(PmsProductLadder record);
+ int insertSelective(PmsProductLadder row);
List selectByExample(PmsProductLadderExample example);
PmsProductLadder selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsProductLadder record, @Param("example") PmsProductLadderExample example);
+ int updateByExampleSelective(@Param("row") PmsProductLadder row, @Param("example") PmsProductLadderExample example);
- int updateByExample(@Param("record") PmsProductLadder record, @Param("example") PmsProductLadderExample example);
+ int updateByExample(@Param("row") PmsProductLadder row, @Param("example") PmsProductLadderExample example);
- int updateByPrimaryKeySelective(PmsProductLadder record);
+ int updateByPrimaryKeySelective(PmsProductLadder row);
- int updateByPrimaryKey(PmsProductLadder record);
+ int updateByPrimaryKey(PmsProductLadder row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductMapper.java
index 4b619b7..8fd9f9e 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductMapper.java
@@ -12,9 +12,9 @@ public interface PmsProductMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsProduct record);
+ int insert(PmsProduct row);
- int insertSelective(PmsProduct record);
+ int insertSelective(PmsProduct row);
List selectByExampleWithBLOBs(PmsProductExample example);
@@ -22,15 +22,15 @@ public interface PmsProductMapper {
PmsProduct selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsProduct record, @Param("example") PmsProductExample example);
+ int updateByExampleSelective(@Param("row") PmsProduct row, @Param("example") PmsProductExample example);
- int updateByExampleWithBLOBs(@Param("record") PmsProduct record, @Param("example") PmsProductExample example);
+ int updateByExampleWithBLOBs(@Param("row") PmsProduct row, @Param("example") PmsProductExample example);
- int updateByExample(@Param("record") PmsProduct record, @Param("example") PmsProductExample example);
+ int updateByExample(@Param("row") PmsProduct row, @Param("example") PmsProductExample example);
- int updateByPrimaryKeySelective(PmsProduct record);
+ int updateByPrimaryKeySelective(PmsProduct row);
- int updateByPrimaryKeyWithBLOBs(PmsProduct record);
+ int updateByPrimaryKeyWithBLOBs(PmsProduct row);
- int updateByPrimaryKey(PmsProduct record);
+ int updateByPrimaryKey(PmsProduct row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductOperateLogMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductOperateLogMapper.java
index 9b1474e..3d9049b 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductOperateLogMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductOperateLogMapper.java
@@ -12,19 +12,19 @@ public interface PmsProductOperateLogMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsProductOperateLog record);
+ int insert(PmsProductOperateLog row);
- int insertSelective(PmsProductOperateLog record);
+ int insertSelective(PmsProductOperateLog row);
List selectByExample(PmsProductOperateLogExample example);
PmsProductOperateLog selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsProductOperateLog record, @Param("example") PmsProductOperateLogExample example);
+ int updateByExampleSelective(@Param("row") PmsProductOperateLog row, @Param("example") PmsProductOperateLogExample example);
- int updateByExample(@Param("record") PmsProductOperateLog record, @Param("example") PmsProductOperateLogExample example);
+ int updateByExample(@Param("row") PmsProductOperateLog row, @Param("example") PmsProductOperateLogExample example);
- int updateByPrimaryKeySelective(PmsProductOperateLog record);
+ int updateByPrimaryKeySelective(PmsProductOperateLog row);
- int updateByPrimaryKey(PmsProductOperateLog record);
+ int updateByPrimaryKey(PmsProductOperateLog row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductVertifyRecordMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductVertifyRecordMapper.java
index f8e048d..1246a7d 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductVertifyRecordMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsProductVertifyRecordMapper.java
@@ -12,19 +12,19 @@ public interface PmsProductVertifyRecordMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsProductVertifyRecord record);
+ int insert(PmsProductVertifyRecord row);
- int insertSelective(PmsProductVertifyRecord record);
+ int insertSelective(PmsProductVertifyRecord row);
List selectByExample(PmsProductVertifyRecordExample example);
PmsProductVertifyRecord selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsProductVertifyRecord record, @Param("example") PmsProductVertifyRecordExample example);
+ int updateByExampleSelective(@Param("row") PmsProductVertifyRecord row, @Param("example") PmsProductVertifyRecordExample example);
- int updateByExample(@Param("record") PmsProductVertifyRecord record, @Param("example") PmsProductVertifyRecordExample example);
+ int updateByExample(@Param("row") PmsProductVertifyRecord row, @Param("example") PmsProductVertifyRecordExample example);
- int updateByPrimaryKeySelective(PmsProductVertifyRecord record);
+ int updateByPrimaryKeySelective(PmsProductVertifyRecord row);
- int updateByPrimaryKey(PmsProductVertifyRecord record);
+ int updateByPrimaryKey(PmsProductVertifyRecord row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsSkuStockMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsSkuStockMapper.java
index 668115d..dc3d470 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/PmsSkuStockMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/PmsSkuStockMapper.java
@@ -12,19 +12,19 @@ public interface PmsSkuStockMapper {
int deleteByPrimaryKey(Long id);
- int insert(PmsSkuStock record);
+ int insert(PmsSkuStock row);
- int insertSelective(PmsSkuStock record);
+ int insertSelective(PmsSkuStock row);
List selectByExample(PmsSkuStockExample example);
PmsSkuStock selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") PmsSkuStock record, @Param("example") PmsSkuStockExample example);
+ int updateByExampleSelective(@Param("row") PmsSkuStock row, @Param("example") PmsSkuStockExample example);
- int updateByExample(@Param("record") PmsSkuStock record, @Param("example") PmsSkuStockExample example);
+ int updateByExample(@Param("row") PmsSkuStock row, @Param("example") PmsSkuStockExample example);
- int updateByPrimaryKeySelective(PmsSkuStock record);
+ int updateByPrimaryKeySelective(PmsSkuStock row);
- int updateByPrimaryKey(PmsSkuStock record);
+ int updateByPrimaryKey(PmsSkuStock row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsCouponHistoryMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsCouponHistoryMapper.java
index 672604d..6dabeae 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsCouponHistoryMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsCouponHistoryMapper.java
@@ -12,19 +12,19 @@ public interface SmsCouponHistoryMapper {
int deleteByPrimaryKey(Long id);
- int insert(SmsCouponHistory record);
+ int insert(SmsCouponHistory row);
- int insertSelective(SmsCouponHistory record);
+ int insertSelective(SmsCouponHistory row);
List selectByExample(SmsCouponHistoryExample example);
SmsCouponHistory selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") SmsCouponHistory record, @Param("example") SmsCouponHistoryExample example);
+ int updateByExampleSelective(@Param("row") SmsCouponHistory row, @Param("example") SmsCouponHistoryExample example);
- int updateByExample(@Param("record") SmsCouponHistory record, @Param("example") SmsCouponHistoryExample example);
+ int updateByExample(@Param("row") SmsCouponHistory row, @Param("example") SmsCouponHistoryExample example);
- int updateByPrimaryKeySelective(SmsCouponHistory record);
+ int updateByPrimaryKeySelective(SmsCouponHistory row);
- int updateByPrimaryKey(SmsCouponHistory record);
+ int updateByPrimaryKey(SmsCouponHistory row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsCouponMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsCouponMapper.java
index a6781a5..dda3535 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsCouponMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsCouponMapper.java
@@ -12,19 +12,19 @@ public interface SmsCouponMapper {
int deleteByPrimaryKey(Long id);
- int insert(SmsCoupon record);
+ int insert(SmsCoupon row);
- int insertSelective(SmsCoupon record);
+ int insertSelective(SmsCoupon row);
List selectByExample(SmsCouponExample example);
SmsCoupon selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") SmsCoupon record, @Param("example") SmsCouponExample example);
+ int updateByExampleSelective(@Param("row") SmsCoupon row, @Param("example") SmsCouponExample example);
- int updateByExample(@Param("record") SmsCoupon record, @Param("example") SmsCouponExample example);
+ int updateByExample(@Param("row") SmsCoupon row, @Param("example") SmsCouponExample example);
- int updateByPrimaryKeySelective(SmsCoupon record);
+ int updateByPrimaryKeySelective(SmsCoupon row);
- int updateByPrimaryKey(SmsCoupon record);
+ int updateByPrimaryKey(SmsCoupon row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsCouponProductCategoryRelationMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsCouponProductCategoryRelationMapper.java
index 419c28e..1d3d99e 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsCouponProductCategoryRelationMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsCouponProductCategoryRelationMapper.java
@@ -12,19 +12,19 @@ public interface SmsCouponProductCategoryRelationMapper {
int deleteByPrimaryKey(Long id);
- int insert(SmsCouponProductCategoryRelation record);
+ int insert(SmsCouponProductCategoryRelation row);
- int insertSelective(SmsCouponProductCategoryRelation record);
+ int insertSelective(SmsCouponProductCategoryRelation row);
List selectByExample(SmsCouponProductCategoryRelationExample example);
SmsCouponProductCategoryRelation selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") SmsCouponProductCategoryRelation record, @Param("example") SmsCouponProductCategoryRelationExample example);
+ int updateByExampleSelective(@Param("row") SmsCouponProductCategoryRelation row, @Param("example") SmsCouponProductCategoryRelationExample example);
- int updateByExample(@Param("record") SmsCouponProductCategoryRelation record, @Param("example") SmsCouponProductCategoryRelationExample example);
+ int updateByExample(@Param("row") SmsCouponProductCategoryRelation row, @Param("example") SmsCouponProductCategoryRelationExample example);
- int updateByPrimaryKeySelective(SmsCouponProductCategoryRelation record);
+ int updateByPrimaryKeySelective(SmsCouponProductCategoryRelation row);
- int updateByPrimaryKey(SmsCouponProductCategoryRelation record);
+ int updateByPrimaryKey(SmsCouponProductCategoryRelation row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsCouponProductRelationMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsCouponProductRelationMapper.java
index 0e77c32..967ed03 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsCouponProductRelationMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsCouponProductRelationMapper.java
@@ -12,19 +12,19 @@ public interface SmsCouponProductRelationMapper {
int deleteByPrimaryKey(Long id);
- int insert(SmsCouponProductRelation record);
+ int insert(SmsCouponProductRelation row);
- int insertSelective(SmsCouponProductRelation record);
+ int insertSelective(SmsCouponProductRelation row);
List selectByExample(SmsCouponProductRelationExample example);
SmsCouponProductRelation selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") SmsCouponProductRelation record, @Param("example") SmsCouponProductRelationExample example);
+ int updateByExampleSelective(@Param("row") SmsCouponProductRelation row, @Param("example") SmsCouponProductRelationExample example);
- int updateByExample(@Param("record") SmsCouponProductRelation record, @Param("example") SmsCouponProductRelationExample example);
+ int updateByExample(@Param("row") SmsCouponProductRelation row, @Param("example") SmsCouponProductRelationExample example);
- int updateByPrimaryKeySelective(SmsCouponProductRelation record);
+ int updateByPrimaryKeySelective(SmsCouponProductRelation row);
- int updateByPrimaryKey(SmsCouponProductRelation record);
+ int updateByPrimaryKey(SmsCouponProductRelation row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsFlashPromotionLogMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsFlashPromotionLogMapper.java
index da5b5f3..7139560 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsFlashPromotionLogMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsFlashPromotionLogMapper.java
@@ -12,19 +12,19 @@ public interface SmsFlashPromotionLogMapper {
int deleteByPrimaryKey(Integer id);
- int insert(SmsFlashPromotionLog record);
+ int insert(SmsFlashPromotionLog row);
- int insertSelective(SmsFlashPromotionLog record);
+ int insertSelective(SmsFlashPromotionLog row);
List selectByExample(SmsFlashPromotionLogExample example);
SmsFlashPromotionLog selectByPrimaryKey(Integer id);
- int updateByExampleSelective(@Param("record") SmsFlashPromotionLog record, @Param("example") SmsFlashPromotionLogExample example);
+ int updateByExampleSelective(@Param("row") SmsFlashPromotionLog row, @Param("example") SmsFlashPromotionLogExample example);
- int updateByExample(@Param("record") SmsFlashPromotionLog record, @Param("example") SmsFlashPromotionLogExample example);
+ int updateByExample(@Param("row") SmsFlashPromotionLog row, @Param("example") SmsFlashPromotionLogExample example);
- int updateByPrimaryKeySelective(SmsFlashPromotionLog record);
+ int updateByPrimaryKeySelective(SmsFlashPromotionLog row);
- int updateByPrimaryKey(SmsFlashPromotionLog record);
+ int updateByPrimaryKey(SmsFlashPromotionLog row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsFlashPromotionMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsFlashPromotionMapper.java
index 648b5dc..2501232 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsFlashPromotionMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsFlashPromotionMapper.java
@@ -12,19 +12,19 @@ public interface SmsFlashPromotionMapper {
int deleteByPrimaryKey(Long id);
- int insert(SmsFlashPromotion record);
+ int insert(SmsFlashPromotion row);
- int insertSelective(SmsFlashPromotion record);
+ int insertSelective(SmsFlashPromotion row);
List selectByExample(SmsFlashPromotionExample example);
SmsFlashPromotion selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") SmsFlashPromotion record, @Param("example") SmsFlashPromotionExample example);
+ int updateByExampleSelective(@Param("row") SmsFlashPromotion row, @Param("example") SmsFlashPromotionExample example);
- int updateByExample(@Param("record") SmsFlashPromotion record, @Param("example") SmsFlashPromotionExample example);
+ int updateByExample(@Param("row") SmsFlashPromotion row, @Param("example") SmsFlashPromotionExample example);
- int updateByPrimaryKeySelective(SmsFlashPromotion record);
+ int updateByPrimaryKeySelective(SmsFlashPromotion row);
- int updateByPrimaryKey(SmsFlashPromotion record);
+ int updateByPrimaryKey(SmsFlashPromotion row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsFlashPromotionProductRelationMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsFlashPromotionProductRelationMapper.java
index e0dbbbb..78fc8f9 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsFlashPromotionProductRelationMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsFlashPromotionProductRelationMapper.java
@@ -12,19 +12,19 @@ public interface SmsFlashPromotionProductRelationMapper {
int deleteByPrimaryKey(Long id);
- int insert(SmsFlashPromotionProductRelation record);
+ int insert(SmsFlashPromotionProductRelation row);
- int insertSelective(SmsFlashPromotionProductRelation record);
+ int insertSelective(SmsFlashPromotionProductRelation row);
List selectByExample(SmsFlashPromotionProductRelationExample example);
SmsFlashPromotionProductRelation selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") SmsFlashPromotionProductRelation record, @Param("example") SmsFlashPromotionProductRelationExample example);
+ int updateByExampleSelective(@Param("row") SmsFlashPromotionProductRelation row, @Param("example") SmsFlashPromotionProductRelationExample example);
- int updateByExample(@Param("record") SmsFlashPromotionProductRelation record, @Param("example") SmsFlashPromotionProductRelationExample example);
+ int updateByExample(@Param("row") SmsFlashPromotionProductRelation row, @Param("example") SmsFlashPromotionProductRelationExample example);
- int updateByPrimaryKeySelective(SmsFlashPromotionProductRelation record);
+ int updateByPrimaryKeySelective(SmsFlashPromotionProductRelation row);
- int updateByPrimaryKey(SmsFlashPromotionProductRelation record);
+ int updateByPrimaryKey(SmsFlashPromotionProductRelation row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsFlashPromotionSessionMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsFlashPromotionSessionMapper.java
index e85bca5..a939a31 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsFlashPromotionSessionMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsFlashPromotionSessionMapper.java
@@ -12,19 +12,19 @@ public interface SmsFlashPromotionSessionMapper {
int deleteByPrimaryKey(Long id);
- int insert(SmsFlashPromotionSession record);
+ int insert(SmsFlashPromotionSession row);
- int insertSelective(SmsFlashPromotionSession record);
+ int insertSelective(SmsFlashPromotionSession row);
List selectByExample(SmsFlashPromotionSessionExample example);
SmsFlashPromotionSession selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") SmsFlashPromotionSession record, @Param("example") SmsFlashPromotionSessionExample example);
+ int updateByExampleSelective(@Param("row") SmsFlashPromotionSession row, @Param("example") SmsFlashPromotionSessionExample example);
- int updateByExample(@Param("record") SmsFlashPromotionSession record, @Param("example") SmsFlashPromotionSessionExample example);
+ int updateByExample(@Param("row") SmsFlashPromotionSession row, @Param("example") SmsFlashPromotionSessionExample example);
- int updateByPrimaryKeySelective(SmsFlashPromotionSession record);
+ int updateByPrimaryKeySelective(SmsFlashPromotionSession row);
- int updateByPrimaryKey(SmsFlashPromotionSession record);
+ int updateByPrimaryKey(SmsFlashPromotionSession row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeAdvertiseMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeAdvertiseMapper.java
index 2f96542..97a54f7 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeAdvertiseMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeAdvertiseMapper.java
@@ -12,19 +12,19 @@ public interface SmsHomeAdvertiseMapper {
int deleteByPrimaryKey(Long id);
- int insert(SmsHomeAdvertise record);
+ int insert(SmsHomeAdvertise row);
- int insertSelective(SmsHomeAdvertise record);
+ int insertSelective(SmsHomeAdvertise row);
List selectByExample(SmsHomeAdvertiseExample example);
SmsHomeAdvertise selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") SmsHomeAdvertise record, @Param("example") SmsHomeAdvertiseExample example);
+ int updateByExampleSelective(@Param("row") SmsHomeAdvertise row, @Param("example") SmsHomeAdvertiseExample example);
- int updateByExample(@Param("record") SmsHomeAdvertise record, @Param("example") SmsHomeAdvertiseExample example);
+ int updateByExample(@Param("row") SmsHomeAdvertise row, @Param("example") SmsHomeAdvertiseExample example);
- int updateByPrimaryKeySelective(SmsHomeAdvertise record);
+ int updateByPrimaryKeySelective(SmsHomeAdvertise row);
- int updateByPrimaryKey(SmsHomeAdvertise record);
+ int updateByPrimaryKey(SmsHomeAdvertise row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeBrandMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeBrandMapper.java
index d6e5959..fcaa6ee 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeBrandMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeBrandMapper.java
@@ -12,19 +12,19 @@ public interface SmsHomeBrandMapper {
int deleteByPrimaryKey(Long id);
- int insert(SmsHomeBrand record);
+ int insert(SmsHomeBrand row);
- int insertSelective(SmsHomeBrand record);
+ int insertSelective(SmsHomeBrand row);
List selectByExample(SmsHomeBrandExample example);
SmsHomeBrand selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") SmsHomeBrand record, @Param("example") SmsHomeBrandExample example);
+ int updateByExampleSelective(@Param("row") SmsHomeBrand row, @Param("example") SmsHomeBrandExample example);
- int updateByExample(@Param("record") SmsHomeBrand record, @Param("example") SmsHomeBrandExample example);
+ int updateByExample(@Param("row") SmsHomeBrand row, @Param("example") SmsHomeBrandExample example);
- int updateByPrimaryKeySelective(SmsHomeBrand record);
+ int updateByPrimaryKeySelective(SmsHomeBrand row);
- int updateByPrimaryKey(SmsHomeBrand record);
+ int updateByPrimaryKey(SmsHomeBrand row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeNewProductMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeNewProductMapper.java
index c3ba126..19fad8d 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeNewProductMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeNewProductMapper.java
@@ -12,19 +12,19 @@ public interface SmsHomeNewProductMapper {
int deleteByPrimaryKey(Long id);
- int insert(SmsHomeNewProduct record);
+ int insert(SmsHomeNewProduct row);
- int insertSelective(SmsHomeNewProduct record);
+ int insertSelective(SmsHomeNewProduct row);
List selectByExample(SmsHomeNewProductExample example);
SmsHomeNewProduct selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") SmsHomeNewProduct record, @Param("example") SmsHomeNewProductExample example);
+ int updateByExampleSelective(@Param("row") SmsHomeNewProduct row, @Param("example") SmsHomeNewProductExample example);
- int updateByExample(@Param("record") SmsHomeNewProduct record, @Param("example") SmsHomeNewProductExample example);
+ int updateByExample(@Param("row") SmsHomeNewProduct row, @Param("example") SmsHomeNewProductExample example);
- int updateByPrimaryKeySelective(SmsHomeNewProduct record);
+ int updateByPrimaryKeySelective(SmsHomeNewProduct row);
- int updateByPrimaryKey(SmsHomeNewProduct record);
+ int updateByPrimaryKey(SmsHomeNewProduct row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeRecommendProductMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeRecommendProductMapper.java
index bc30400..b4360d8 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeRecommendProductMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeRecommendProductMapper.java
@@ -12,19 +12,19 @@ public interface SmsHomeRecommendProductMapper {
int deleteByPrimaryKey(Long id);
- int insert(SmsHomeRecommendProduct record);
+ int insert(SmsHomeRecommendProduct row);
- int insertSelective(SmsHomeRecommendProduct record);
+ int insertSelective(SmsHomeRecommendProduct row);
List selectByExample(SmsHomeRecommendProductExample example);
SmsHomeRecommendProduct selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") SmsHomeRecommendProduct record, @Param("example") SmsHomeRecommendProductExample example);
+ int updateByExampleSelective(@Param("row") SmsHomeRecommendProduct row, @Param("example") SmsHomeRecommendProductExample example);
- int updateByExample(@Param("record") SmsHomeRecommendProduct record, @Param("example") SmsHomeRecommendProductExample example);
+ int updateByExample(@Param("row") SmsHomeRecommendProduct row, @Param("example") SmsHomeRecommendProductExample example);
- int updateByPrimaryKeySelective(SmsHomeRecommendProduct record);
+ int updateByPrimaryKeySelective(SmsHomeRecommendProduct row);
- int updateByPrimaryKey(SmsHomeRecommendProduct record);
+ int updateByPrimaryKey(SmsHomeRecommendProduct row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeRecommendSubjectMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeRecommendSubjectMapper.java
index e9d6b11..a910136 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeRecommendSubjectMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/SmsHomeRecommendSubjectMapper.java
@@ -12,19 +12,19 @@ public interface SmsHomeRecommendSubjectMapper {
int deleteByPrimaryKey(Long id);
- int insert(SmsHomeRecommendSubject record);
+ int insert(SmsHomeRecommendSubject row);
- int insertSelective(SmsHomeRecommendSubject record);
+ int insertSelective(SmsHomeRecommendSubject row);
List selectByExample(SmsHomeRecommendSubjectExample example);
SmsHomeRecommendSubject selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") SmsHomeRecommendSubject record, @Param("example") SmsHomeRecommendSubjectExample example);
+ int updateByExampleSelective(@Param("row") SmsHomeRecommendSubject row, @Param("example") SmsHomeRecommendSubjectExample example);
- int updateByExample(@Param("record") SmsHomeRecommendSubject record, @Param("example") SmsHomeRecommendSubjectExample example);
+ int updateByExample(@Param("row") SmsHomeRecommendSubject row, @Param("example") SmsHomeRecommendSubjectExample example);
- int updateByPrimaryKeySelective(SmsHomeRecommendSubject record);
+ int updateByPrimaryKeySelective(SmsHomeRecommendSubject row);
- int updateByPrimaryKey(SmsHomeRecommendSubject record);
+ int updateByPrimaryKey(SmsHomeRecommendSubject row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsAdminLoginLogMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsAdminLoginLogMapper.java
index 84b396c..d8dfd50 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsAdminLoginLogMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsAdminLoginLogMapper.java
@@ -12,19 +12,19 @@ public interface UmsAdminLoginLogMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsAdminLoginLog record);
+ int insert(UmsAdminLoginLog row);
- int insertSelective(UmsAdminLoginLog record);
+ int insertSelective(UmsAdminLoginLog row);
List selectByExample(UmsAdminLoginLogExample example);
UmsAdminLoginLog selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsAdminLoginLog record, @Param("example") UmsAdminLoginLogExample example);
+ int updateByExampleSelective(@Param("row") UmsAdminLoginLog row, @Param("example") UmsAdminLoginLogExample example);
- int updateByExample(@Param("record") UmsAdminLoginLog record, @Param("example") UmsAdminLoginLogExample example);
+ int updateByExample(@Param("row") UmsAdminLoginLog row, @Param("example") UmsAdminLoginLogExample example);
- int updateByPrimaryKeySelective(UmsAdminLoginLog record);
+ int updateByPrimaryKeySelective(UmsAdminLoginLog row);
- int updateByPrimaryKey(UmsAdminLoginLog record);
+ int updateByPrimaryKey(UmsAdminLoginLog row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsAdminMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsAdminMapper.java
index 36b59a8..cb1c8f1 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsAdminMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsAdminMapper.java
@@ -12,19 +12,19 @@ public interface UmsAdminMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsAdmin record);
+ int insert(UmsAdmin row);
- int insertSelective(UmsAdmin record);
+ int insertSelective(UmsAdmin row);
List selectByExample(UmsAdminExample example);
UmsAdmin selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsAdmin record, @Param("example") UmsAdminExample example);
+ int updateByExampleSelective(@Param("row") UmsAdmin row, @Param("example") UmsAdminExample example);
- int updateByExample(@Param("record") UmsAdmin record, @Param("example") UmsAdminExample example);
+ int updateByExample(@Param("row") UmsAdmin row, @Param("example") UmsAdminExample example);
- int updateByPrimaryKeySelective(UmsAdmin record);
+ int updateByPrimaryKeySelective(UmsAdmin row);
- int updateByPrimaryKey(UmsAdmin record);
+ int updateByPrimaryKey(UmsAdmin row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsAdminPermissionRelationMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsAdminPermissionRelationMapper.java
index b8e1b80..640be74 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsAdminPermissionRelationMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsAdminPermissionRelationMapper.java
@@ -12,19 +12,19 @@ public interface UmsAdminPermissionRelationMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsAdminPermissionRelation record);
+ int insert(UmsAdminPermissionRelation row);
- int insertSelective(UmsAdminPermissionRelation record);
+ int insertSelective(UmsAdminPermissionRelation row);
List selectByExample(UmsAdminPermissionRelationExample example);
UmsAdminPermissionRelation selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsAdminPermissionRelation record, @Param("example") UmsAdminPermissionRelationExample example);
+ int updateByExampleSelective(@Param("row") UmsAdminPermissionRelation row, @Param("example") UmsAdminPermissionRelationExample example);
- int updateByExample(@Param("record") UmsAdminPermissionRelation record, @Param("example") UmsAdminPermissionRelationExample example);
+ int updateByExample(@Param("row") UmsAdminPermissionRelation row, @Param("example") UmsAdminPermissionRelationExample example);
- int updateByPrimaryKeySelective(UmsAdminPermissionRelation record);
+ int updateByPrimaryKeySelective(UmsAdminPermissionRelation row);
- int updateByPrimaryKey(UmsAdminPermissionRelation record);
+ int updateByPrimaryKey(UmsAdminPermissionRelation row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsAdminRoleRelationMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsAdminRoleRelationMapper.java
index 6198769..846de60 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsAdminRoleRelationMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsAdminRoleRelationMapper.java
@@ -12,19 +12,19 @@ public interface UmsAdminRoleRelationMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsAdminRoleRelation record);
+ int insert(UmsAdminRoleRelation row);
- int insertSelective(UmsAdminRoleRelation record);
+ int insertSelective(UmsAdminRoleRelation row);
List selectByExample(UmsAdminRoleRelationExample example);
UmsAdminRoleRelation selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsAdminRoleRelation record, @Param("example") UmsAdminRoleRelationExample example);
+ int updateByExampleSelective(@Param("row") UmsAdminRoleRelation row, @Param("example") UmsAdminRoleRelationExample example);
- int updateByExample(@Param("record") UmsAdminRoleRelation record, @Param("example") UmsAdminRoleRelationExample example);
+ int updateByExample(@Param("row") UmsAdminRoleRelation row, @Param("example") UmsAdminRoleRelationExample example);
- int updateByPrimaryKeySelective(UmsAdminRoleRelation record);
+ int updateByPrimaryKeySelective(UmsAdminRoleRelation row);
- int updateByPrimaryKey(UmsAdminRoleRelation record);
+ int updateByPrimaryKey(UmsAdminRoleRelation row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsGrowthChangeHistoryMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsGrowthChangeHistoryMapper.java
index d9b9ad6..9a3de70 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsGrowthChangeHistoryMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsGrowthChangeHistoryMapper.java
@@ -12,19 +12,19 @@ public interface UmsGrowthChangeHistoryMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsGrowthChangeHistory record);
+ int insert(UmsGrowthChangeHistory row);
- int insertSelective(UmsGrowthChangeHistory record);
+ int insertSelective(UmsGrowthChangeHistory row);
List selectByExample(UmsGrowthChangeHistoryExample example);
UmsGrowthChangeHistory selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsGrowthChangeHistory record, @Param("example") UmsGrowthChangeHistoryExample example);
+ int updateByExampleSelective(@Param("row") UmsGrowthChangeHistory row, @Param("example") UmsGrowthChangeHistoryExample example);
- int updateByExample(@Param("record") UmsGrowthChangeHistory record, @Param("example") UmsGrowthChangeHistoryExample example);
+ int updateByExample(@Param("row") UmsGrowthChangeHistory row, @Param("example") UmsGrowthChangeHistoryExample example);
- int updateByPrimaryKeySelective(UmsGrowthChangeHistory record);
+ int updateByPrimaryKeySelective(UmsGrowthChangeHistory row);
- int updateByPrimaryKey(UmsGrowthChangeHistory record);
+ int updateByPrimaryKey(UmsGrowthChangeHistory row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsIntegrationChangeHistoryMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsIntegrationChangeHistoryMapper.java
index 04dc1be..e126a99 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsIntegrationChangeHistoryMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsIntegrationChangeHistoryMapper.java
@@ -12,19 +12,19 @@ public interface UmsIntegrationChangeHistoryMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsIntegrationChangeHistory record);
+ int insert(UmsIntegrationChangeHistory row);
- int insertSelective(UmsIntegrationChangeHistory record);
+ int insertSelective(UmsIntegrationChangeHistory row);
List selectByExample(UmsIntegrationChangeHistoryExample example);
UmsIntegrationChangeHistory selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsIntegrationChangeHistory record, @Param("example") UmsIntegrationChangeHistoryExample example);
+ int updateByExampleSelective(@Param("row") UmsIntegrationChangeHistory row, @Param("example") UmsIntegrationChangeHistoryExample example);
- int updateByExample(@Param("record") UmsIntegrationChangeHistory record, @Param("example") UmsIntegrationChangeHistoryExample example);
+ int updateByExample(@Param("row") UmsIntegrationChangeHistory row, @Param("example") UmsIntegrationChangeHistoryExample example);
- int updateByPrimaryKeySelective(UmsIntegrationChangeHistory record);
+ int updateByPrimaryKeySelective(UmsIntegrationChangeHistory row);
- int updateByPrimaryKey(UmsIntegrationChangeHistory record);
+ int updateByPrimaryKey(UmsIntegrationChangeHistory row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsIntegrationConsumeSettingMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsIntegrationConsumeSettingMapper.java
index f079365..6c7c5fc 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsIntegrationConsumeSettingMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsIntegrationConsumeSettingMapper.java
@@ -12,19 +12,19 @@ public interface UmsIntegrationConsumeSettingMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsIntegrationConsumeSetting record);
+ int insert(UmsIntegrationConsumeSetting row);
- int insertSelective(UmsIntegrationConsumeSetting record);
+ int insertSelective(UmsIntegrationConsumeSetting row);
List selectByExample(UmsIntegrationConsumeSettingExample example);
UmsIntegrationConsumeSetting selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsIntegrationConsumeSetting record, @Param("example") UmsIntegrationConsumeSettingExample example);
+ int updateByExampleSelective(@Param("row") UmsIntegrationConsumeSetting row, @Param("example") UmsIntegrationConsumeSettingExample example);
- int updateByExample(@Param("record") UmsIntegrationConsumeSetting record, @Param("example") UmsIntegrationConsumeSettingExample example);
+ int updateByExample(@Param("row") UmsIntegrationConsumeSetting row, @Param("example") UmsIntegrationConsumeSettingExample example);
- int updateByPrimaryKeySelective(UmsIntegrationConsumeSetting record);
+ int updateByPrimaryKeySelective(UmsIntegrationConsumeSetting row);
- int updateByPrimaryKey(UmsIntegrationConsumeSetting record);
+ int updateByPrimaryKey(UmsIntegrationConsumeSetting row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberLevelMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberLevelMapper.java
index 71a64ed..21a0bce 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberLevelMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberLevelMapper.java
@@ -12,19 +12,19 @@ public interface UmsMemberLevelMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsMemberLevel record);
+ int insert(UmsMemberLevel row);
- int insertSelective(UmsMemberLevel record);
+ int insertSelective(UmsMemberLevel row);
List selectByExample(UmsMemberLevelExample example);
UmsMemberLevel selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsMemberLevel record, @Param("example") UmsMemberLevelExample example);
+ int updateByExampleSelective(@Param("row") UmsMemberLevel row, @Param("example") UmsMemberLevelExample example);
- int updateByExample(@Param("record") UmsMemberLevel record, @Param("example") UmsMemberLevelExample example);
+ int updateByExample(@Param("row") UmsMemberLevel row, @Param("example") UmsMemberLevelExample example);
- int updateByPrimaryKeySelective(UmsMemberLevel record);
+ int updateByPrimaryKeySelective(UmsMemberLevel row);
- int updateByPrimaryKey(UmsMemberLevel record);
+ int updateByPrimaryKey(UmsMemberLevel row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberLoginLogMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberLoginLogMapper.java
index 3fb0f48..22a81db 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberLoginLogMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberLoginLogMapper.java
@@ -12,19 +12,19 @@ public interface UmsMemberLoginLogMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsMemberLoginLog record);
+ int insert(UmsMemberLoginLog row);
- int insertSelective(UmsMemberLoginLog record);
+ int insertSelective(UmsMemberLoginLog row);
List selectByExample(UmsMemberLoginLogExample example);
UmsMemberLoginLog selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsMemberLoginLog record, @Param("example") UmsMemberLoginLogExample example);
+ int updateByExampleSelective(@Param("row") UmsMemberLoginLog row, @Param("example") UmsMemberLoginLogExample example);
- int updateByExample(@Param("record") UmsMemberLoginLog record, @Param("example") UmsMemberLoginLogExample example);
+ int updateByExample(@Param("row") UmsMemberLoginLog row, @Param("example") UmsMemberLoginLogExample example);
- int updateByPrimaryKeySelective(UmsMemberLoginLog record);
+ int updateByPrimaryKeySelective(UmsMemberLoginLog row);
- int updateByPrimaryKey(UmsMemberLoginLog record);
+ int updateByPrimaryKey(UmsMemberLoginLog row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberMapper.java
index 5360bcf..c950488 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberMapper.java
@@ -12,19 +12,19 @@ public interface UmsMemberMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsMember record);
+ int insert(UmsMember row);
- int insertSelective(UmsMember record);
+ int insertSelective(UmsMember row);
List selectByExample(UmsMemberExample example);
UmsMember selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsMember record, @Param("example") UmsMemberExample example);
+ int updateByExampleSelective(@Param("row") UmsMember row, @Param("example") UmsMemberExample example);
- int updateByExample(@Param("record") UmsMember record, @Param("example") UmsMemberExample example);
+ int updateByExample(@Param("row") UmsMember row, @Param("example") UmsMemberExample example);
- int updateByPrimaryKeySelective(UmsMember record);
+ int updateByPrimaryKeySelective(UmsMember row);
- int updateByPrimaryKey(UmsMember record);
+ int updateByPrimaryKey(UmsMember row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberMemberTagRelationMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberMemberTagRelationMapper.java
index d76df3d..d2acf9c 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberMemberTagRelationMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberMemberTagRelationMapper.java
@@ -12,19 +12,19 @@ public interface UmsMemberMemberTagRelationMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsMemberMemberTagRelation record);
+ int insert(UmsMemberMemberTagRelation row);
- int insertSelective(UmsMemberMemberTagRelation record);
+ int insertSelective(UmsMemberMemberTagRelation row);
List selectByExample(UmsMemberMemberTagRelationExample example);
UmsMemberMemberTagRelation selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsMemberMemberTagRelation record, @Param("example") UmsMemberMemberTagRelationExample example);
+ int updateByExampleSelective(@Param("row") UmsMemberMemberTagRelation row, @Param("example") UmsMemberMemberTagRelationExample example);
- int updateByExample(@Param("record") UmsMemberMemberTagRelation record, @Param("example") UmsMemberMemberTagRelationExample example);
+ int updateByExample(@Param("row") UmsMemberMemberTagRelation row, @Param("example") UmsMemberMemberTagRelationExample example);
- int updateByPrimaryKeySelective(UmsMemberMemberTagRelation record);
+ int updateByPrimaryKeySelective(UmsMemberMemberTagRelation row);
- int updateByPrimaryKey(UmsMemberMemberTagRelation record);
+ int updateByPrimaryKey(UmsMemberMemberTagRelation row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberProductCategoryRelationMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberProductCategoryRelationMapper.java
index b522a60..692fd78 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberProductCategoryRelationMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberProductCategoryRelationMapper.java
@@ -12,19 +12,19 @@ public interface UmsMemberProductCategoryRelationMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsMemberProductCategoryRelation record);
+ int insert(UmsMemberProductCategoryRelation row);
- int insertSelective(UmsMemberProductCategoryRelation record);
+ int insertSelective(UmsMemberProductCategoryRelation row);
List selectByExample(UmsMemberProductCategoryRelationExample example);
UmsMemberProductCategoryRelation selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsMemberProductCategoryRelation record, @Param("example") UmsMemberProductCategoryRelationExample example);
+ int updateByExampleSelective(@Param("row") UmsMemberProductCategoryRelation row, @Param("example") UmsMemberProductCategoryRelationExample example);
- int updateByExample(@Param("record") UmsMemberProductCategoryRelation record, @Param("example") UmsMemberProductCategoryRelationExample example);
+ int updateByExample(@Param("row") UmsMemberProductCategoryRelation row, @Param("example") UmsMemberProductCategoryRelationExample example);
- int updateByPrimaryKeySelective(UmsMemberProductCategoryRelation record);
+ int updateByPrimaryKeySelective(UmsMemberProductCategoryRelation row);
- int updateByPrimaryKey(UmsMemberProductCategoryRelation record);
+ int updateByPrimaryKey(UmsMemberProductCategoryRelation row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberReceiveAddressMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberReceiveAddressMapper.java
index 5a7b5f7..1b29e5f 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberReceiveAddressMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberReceiveAddressMapper.java
@@ -12,19 +12,19 @@ public interface UmsMemberReceiveAddressMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsMemberReceiveAddress record);
+ int insert(UmsMemberReceiveAddress row);
- int insertSelective(UmsMemberReceiveAddress record);
+ int insertSelective(UmsMemberReceiveAddress row);
List selectByExample(UmsMemberReceiveAddressExample example);
UmsMemberReceiveAddress selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsMemberReceiveAddress record, @Param("example") UmsMemberReceiveAddressExample example);
+ int updateByExampleSelective(@Param("row") UmsMemberReceiveAddress row, @Param("example") UmsMemberReceiveAddressExample example);
- int updateByExample(@Param("record") UmsMemberReceiveAddress record, @Param("example") UmsMemberReceiveAddressExample example);
+ int updateByExample(@Param("row") UmsMemberReceiveAddress row, @Param("example") UmsMemberReceiveAddressExample example);
- int updateByPrimaryKeySelective(UmsMemberReceiveAddress record);
+ int updateByPrimaryKeySelective(UmsMemberReceiveAddress row);
- int updateByPrimaryKey(UmsMemberReceiveAddress record);
+ int updateByPrimaryKey(UmsMemberReceiveAddress row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberRuleSettingMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberRuleSettingMapper.java
index 1fc5b92..951b6d4 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberRuleSettingMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberRuleSettingMapper.java
@@ -12,19 +12,19 @@ public interface UmsMemberRuleSettingMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsMemberRuleSetting record);
+ int insert(UmsMemberRuleSetting row);
- int insertSelective(UmsMemberRuleSetting record);
+ int insertSelective(UmsMemberRuleSetting row);
List selectByExample(UmsMemberRuleSettingExample example);
UmsMemberRuleSetting selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsMemberRuleSetting record, @Param("example") UmsMemberRuleSettingExample example);
+ int updateByExampleSelective(@Param("row") UmsMemberRuleSetting row, @Param("example") UmsMemberRuleSettingExample example);
- int updateByExample(@Param("record") UmsMemberRuleSetting record, @Param("example") UmsMemberRuleSettingExample example);
+ int updateByExample(@Param("row") UmsMemberRuleSetting row, @Param("example") UmsMemberRuleSettingExample example);
- int updateByPrimaryKeySelective(UmsMemberRuleSetting record);
+ int updateByPrimaryKeySelective(UmsMemberRuleSetting row);
- int updateByPrimaryKey(UmsMemberRuleSetting record);
+ int updateByPrimaryKey(UmsMemberRuleSetting row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberStatisticsInfoMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberStatisticsInfoMapper.java
index 8601071..b70d51e 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberStatisticsInfoMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberStatisticsInfoMapper.java
@@ -12,19 +12,19 @@ public interface UmsMemberStatisticsInfoMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsMemberStatisticsInfo record);
+ int insert(UmsMemberStatisticsInfo row);
- int insertSelective(UmsMemberStatisticsInfo record);
+ int insertSelective(UmsMemberStatisticsInfo row);
List selectByExample(UmsMemberStatisticsInfoExample example);
UmsMemberStatisticsInfo selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsMemberStatisticsInfo record, @Param("example") UmsMemberStatisticsInfoExample example);
+ int updateByExampleSelective(@Param("row") UmsMemberStatisticsInfo row, @Param("example") UmsMemberStatisticsInfoExample example);
- int updateByExample(@Param("record") UmsMemberStatisticsInfo record, @Param("example") UmsMemberStatisticsInfoExample example);
+ int updateByExample(@Param("row") UmsMemberStatisticsInfo row, @Param("example") UmsMemberStatisticsInfoExample example);
- int updateByPrimaryKeySelective(UmsMemberStatisticsInfo record);
+ int updateByPrimaryKeySelective(UmsMemberStatisticsInfo row);
- int updateByPrimaryKey(UmsMemberStatisticsInfo record);
+ int updateByPrimaryKey(UmsMemberStatisticsInfo row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberTagMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberTagMapper.java
index 995c6a7..6ea43c8 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberTagMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberTagMapper.java
@@ -12,19 +12,19 @@ public interface UmsMemberTagMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsMemberTag record);
+ int insert(UmsMemberTag row);
- int insertSelective(UmsMemberTag record);
+ int insertSelective(UmsMemberTag row);
List selectByExample(UmsMemberTagExample example);
UmsMemberTag selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsMemberTag record, @Param("example") UmsMemberTagExample example);
+ int updateByExampleSelective(@Param("row") UmsMemberTag row, @Param("example") UmsMemberTagExample example);
- int updateByExample(@Param("record") UmsMemberTag record, @Param("example") UmsMemberTagExample example);
+ int updateByExample(@Param("row") UmsMemberTag row, @Param("example") UmsMemberTagExample example);
- int updateByPrimaryKeySelective(UmsMemberTag record);
+ int updateByPrimaryKeySelective(UmsMemberTag row);
- int updateByPrimaryKey(UmsMemberTag record);
+ int updateByPrimaryKey(UmsMemberTag row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberTaskMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberTaskMapper.java
index 9a11eba..abfb4a3 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberTaskMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMemberTaskMapper.java
@@ -12,19 +12,19 @@ public interface UmsMemberTaskMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsMemberTask record);
+ int insert(UmsMemberTask row);
- int insertSelective(UmsMemberTask record);
+ int insertSelective(UmsMemberTask row);
List selectByExample(UmsMemberTaskExample example);
UmsMemberTask selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsMemberTask record, @Param("example") UmsMemberTaskExample example);
+ int updateByExampleSelective(@Param("row") UmsMemberTask row, @Param("example") UmsMemberTaskExample example);
- int updateByExample(@Param("record") UmsMemberTask record, @Param("example") UmsMemberTaskExample example);
+ int updateByExample(@Param("row") UmsMemberTask row, @Param("example") UmsMemberTaskExample example);
- int updateByPrimaryKeySelective(UmsMemberTask record);
+ int updateByPrimaryKeySelective(UmsMemberTask row);
- int updateByPrimaryKey(UmsMemberTask record);
+ int updateByPrimaryKey(UmsMemberTask row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMenuMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMenuMapper.java
index c26b471..389c983 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMenuMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsMenuMapper.java
@@ -12,19 +12,19 @@ public interface UmsMenuMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsMenu record);
+ int insert(UmsMenu row);
- int insertSelective(UmsMenu record);
+ int insertSelective(UmsMenu row);
List selectByExample(UmsMenuExample example);
UmsMenu selectByPrimaryKey(Long id);
- int updateByExampleSelective(@Param("record") UmsMenu record, @Param("example") UmsMenuExample example);
+ int updateByExampleSelective(@Param("row") UmsMenu row, @Param("example") UmsMenuExample example);
- int updateByExample(@Param("record") UmsMenu record, @Param("example") UmsMenuExample example);
+ int updateByExample(@Param("row") UmsMenu row, @Param("example") UmsMenuExample example);
- int updateByPrimaryKeySelective(UmsMenu record);
+ int updateByPrimaryKeySelective(UmsMenu row);
- int updateByPrimaryKey(UmsMenu record);
+ int updateByPrimaryKey(UmsMenu row);
}
\ No newline at end of file
diff --git a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsPermissionMapper.java b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsPermissionMapper.java
index 466f6c1..d443ea8 100644
--- a/mall-mbg/src/main/java/com/macro/mall/mapper/UmsPermissionMapper.java
+++ b/mall-mbg/src/main/java/com/macro/mall/mapper/UmsPermissionMapper.java
@@ -12,19 +12,19 @@ public interface UmsPermissionMapper {
int deleteByPrimaryKey(Long id);
- int insert(UmsPermission record);
+ int insert(UmsPermission row);
- int insertSelective(UmsPermission record);
+ int insertSelective(UmsPermission row);
List