初始项目信息导入

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

View File

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

View File

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

View File

@@ -0,0 +1,22 @@
package com.macro.mall.mapper;
import com.macro.mall.model.CmsMemberReport;
import com.macro.mall.model.CmsMemberReportExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface CmsMemberReportMapper {
int countByExample(CmsMemberReportExample example);
int deleteByExample(CmsMemberReportExample example);
int insert(CmsMemberReport record);
int insertSelective(CmsMemberReport record);
List<CmsMemberReport> selectByExample(CmsMemberReportExample example);
int updateByExampleSelective(@Param("record") CmsMemberReport record, @Param("example") CmsMemberReportExample example);
int updateByExample(@Param("record") CmsMemberReport record, @Param("example") CmsMemberReportExample example);
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,30 @@
package com.macro.mall.mapper;
import com.macro.mall.model.PmsProductFullReduction;
import com.macro.mall.model.PmsProductFullReductionExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface PmsProductFullReductionMapper {
int countByExample(PmsProductFullReductionExample example);
int deleteByExample(PmsProductFullReductionExample example);
int deleteByPrimaryKey(Integer id);
int insert(PmsProductFullReduction record);
int insertSelective(PmsProductFullReduction record);
List<PmsProductFullReduction> selectByExample(PmsProductFullReductionExample example);
PmsProductFullReduction selectByPrimaryKey(Integer id);
int updateByExampleSelective(@Param("record") PmsProductFullReduction record, @Param("example") PmsProductFullReductionExample example);
int updateByExample(@Param("record") PmsProductFullReduction record, @Param("example") PmsProductFullReductionExample example);
int updateByPrimaryKeySelective(PmsProductFullReduction record);
int updateByPrimaryKey(PmsProductFullReduction record);
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -0,0 +1,30 @@
package com.macro.mall.mapper;
import com.macro.mall.model.SmsFlashPromotionLog;
import com.macro.mall.model.SmsFlashPromotionLogExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface SmsFlashPromotionLogMapper {
int countByExample(SmsFlashPromotionLogExample example);
int deleteByExample(SmsFlashPromotionLogExample example);
int deleteByPrimaryKey(Integer id);
int insert(SmsFlashPromotionLog record);
int insertSelective(SmsFlashPromotionLog record);
List<SmsFlashPromotionLog> selectByExample(SmsFlashPromotionLogExample example);
SmsFlashPromotionLog selectByPrimaryKey(Integer id);
int updateByExampleSelective(@Param("record") SmsFlashPromotionLog record, @Param("example") SmsFlashPromotionLogExample example);
int updateByExample(@Param("record") SmsFlashPromotionLog record, @Param("example") SmsFlashPromotionLogExample example);
int updateByPrimaryKeySelective(SmsFlashPromotionLog record);
int updateByPrimaryKey(SmsFlashPromotionLog record);
}

View File

@@ -0,0 +1,30 @@
package com.macro.mall.mapper;
import com.macro.mall.model.SmsFlashPromotion;
import com.macro.mall.model.SmsFlashPromotionExample;
import java.util.List;
import org.apache.ibatis.annotations.Param;
public interface SmsFlashPromotionMapper {
int countByExample(SmsFlashPromotionExample example);
int deleteByExample(SmsFlashPromotionExample example);
int deleteByPrimaryKey(Integer id);
int insert(SmsFlashPromotion record);
int insertSelective(SmsFlashPromotion record);
List<SmsFlashPromotion> selectByExample(SmsFlashPromotionExample example);
SmsFlashPromotion selectByPrimaryKey(Integer id);
int updateByExampleSelective(@Param("record") SmsFlashPromotion record, @Param("example") SmsFlashPromotionExample example);
int updateByExample(@Param("record") SmsFlashPromotion record, @Param("example") SmsFlashPromotionExample example);
int updateByPrimaryKeySelective(SmsFlashPromotion record);
int updateByPrimaryKey(SmsFlashPromotion record);
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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