会员分成逻辑类
This commit is contained in:
@@ -0,0 +1,30 @@
|
||||
package com.buy507.mall.mapper;
|
||||
|
||||
import com.buy507.mall.model.UmsMemberAccountTransaction;
|
||||
import com.buy507.mall.model.UmsMemberAccountTransactionExample;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface UmsMemberAccountTransactionMapper {
|
||||
long countByExample(UmsMemberAccountTransactionExample example);
|
||||
|
||||
int deleteByExample(UmsMemberAccountTransactionExample example);
|
||||
|
||||
int deleteByPrimaryKey(Long id);
|
||||
|
||||
int insert(UmsMemberAccountTransaction record);
|
||||
|
||||
int insertSelective(UmsMemberAccountTransaction record);
|
||||
|
||||
List<UmsMemberAccountTransaction> selectByExample(UmsMemberAccountTransactionExample example);
|
||||
|
||||
UmsMemberAccountTransaction selectByPrimaryKey(Long id);
|
||||
|
||||
int updateByExampleSelective(@Param("record") UmsMemberAccountTransaction record, @Param("example") UmsMemberAccountTransactionExample example);
|
||||
|
||||
int updateByExample(@Param("record") UmsMemberAccountTransaction record, @Param("example") UmsMemberAccountTransactionExample example);
|
||||
|
||||
int updateByPrimaryKeySelective(UmsMemberAccountTransaction record);
|
||||
|
||||
int updateByPrimaryKey(UmsMemberAccountTransaction record);
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
package com.buy507.mall.mapper;
|
||||
|
||||
import com.buy507.mall.model.UmsMemberRelationTree;
|
||||
import com.buy507.mall.model.UmsMemberRelationTreeExample;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface UmsMemberRelationTreeMapper {
|
||||
long countByExample(UmsMemberRelationTreeExample example);
|
||||
|
||||
int deleteByExample(UmsMemberRelationTreeExample example);
|
||||
|
||||
int deleteByPrimaryKey(Long id);
|
||||
|
||||
int insert(UmsMemberRelationTree record);
|
||||
|
||||
int insertSelective(UmsMemberRelationTree record);
|
||||
|
||||
List<UmsMemberRelationTree> selectByExample(UmsMemberRelationTreeExample example);
|
||||
|
||||
UmsMemberRelationTree selectByPrimaryKey(Long id);
|
||||
|
||||
int updateByExampleSelective(@Param("record") UmsMemberRelationTree record, @Param("example") UmsMemberRelationTreeExample example);
|
||||
|
||||
int updateByExample(@Param("record") UmsMemberRelationTree record, @Param("example") UmsMemberRelationTreeExample example);
|
||||
|
||||
int updateByPrimaryKeySelective(UmsMemberRelationTree record);
|
||||
|
||||
int updateByPrimaryKey(UmsMemberRelationTree record);
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.buy507.mall.model.CmsTopic.UmsMemberAccountTransactionMapper">
|
||||
<mapper namespace="com.buy507.mall.mapper.UmsMemberAccountTransactionMapper">
|
||||
<resultMap id="BaseResultMap" type="com.buy507.mall.model.UmsMemberAccountTransaction">
|
||||
<id column="id" jdbcType="BIGINT" property="id" />
|
||||
<result column="member_id" jdbcType="BIGINT" property="memberId" />
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.buy507.mall.model.CmsTopic.UmsMemberRelationTreeMapper">
|
||||
<mapper namespace="com.buy507.mall.mapper.UmsMemberRelationTreeMapper">
|
||||
<resultMap id="BaseResultMap" type="com.buy507.mall.model.UmsMemberRelationTree">
|
||||
<id column="id" jdbcType="BIGINT" property="id" />
|
||||
<result column="member_id" jdbcType="BIGINT" property="memberId" />
|
||||
|
||||
Reference in New Issue
Block a user