限时购库表修改
This commit is contained in:
@@ -10,7 +10,7 @@ public interface SmsFlashPromotionMapper {
|
||||
|
||||
int deleteByExample(SmsFlashPromotionExample example);
|
||||
|
||||
int deleteByPrimaryKey(Integer id);
|
||||
int deleteByPrimaryKey(Long id);
|
||||
|
||||
int insert(SmsFlashPromotion record);
|
||||
|
||||
@@ -18,7 +18,7 @@ public interface SmsFlashPromotionMapper {
|
||||
|
||||
List<SmsFlashPromotion> selectByExample(SmsFlashPromotionExample example);
|
||||
|
||||
SmsFlashPromotion selectByPrimaryKey(Integer id);
|
||||
SmsFlashPromotion selectByPrimaryKey(Long id);
|
||||
|
||||
int updateByExampleSelective(@Param("record") SmsFlashPromotion record, @Param("example") SmsFlashPromotionExample example);
|
||||
|
||||
|
||||
@@ -0,0 +1,30 @@
|
||||
package com.macro.mall.mapper;
|
||||
|
||||
import com.macro.mall.model.SmsFlashPromotionProductRelation;
|
||||
import com.macro.mall.model.SmsFlashPromotionProductRelationExample;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface SmsFlashPromotionProductRelationMapper {
|
||||
int countByExample(SmsFlashPromotionProductRelationExample example);
|
||||
|
||||
int deleteByExample(SmsFlashPromotionProductRelationExample example);
|
||||
|
||||
int deleteByPrimaryKey(Long id);
|
||||
|
||||
int insert(SmsFlashPromotionProductRelation record);
|
||||
|
||||
int insertSelective(SmsFlashPromotionProductRelation record);
|
||||
|
||||
List<SmsFlashPromotionProductRelation> selectByExample(SmsFlashPromotionProductRelationExample example);
|
||||
|
||||
SmsFlashPromotionProductRelation selectByPrimaryKey(Long id);
|
||||
|
||||
int updateByExampleSelective(@Param("record") SmsFlashPromotionProductRelation record, @Param("example") SmsFlashPromotionProductRelationExample example);
|
||||
|
||||
int updateByExample(@Param("record") SmsFlashPromotionProductRelation record, @Param("example") SmsFlashPromotionProductRelationExample example);
|
||||
|
||||
int updateByPrimaryKeySelective(SmsFlashPromotionProductRelation record);
|
||||
|
||||
int updateByPrimaryKey(SmsFlashPromotionProductRelation record);
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
package com.macro.mall.mapper;
|
||||
|
||||
import com.macro.mall.model.SmsFlashPromotionSession;
|
||||
import com.macro.mall.model.SmsFlashPromotionSessionExample;
|
||||
import java.util.List;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
public interface SmsFlashPromotionSessionMapper {
|
||||
int countByExample(SmsFlashPromotionSessionExample example);
|
||||
|
||||
int deleteByExample(SmsFlashPromotionSessionExample example);
|
||||
|
||||
int deleteByPrimaryKey(Long id);
|
||||
|
||||
int insert(SmsFlashPromotionSession record);
|
||||
|
||||
int insertSelective(SmsFlashPromotionSession record);
|
||||
|
||||
List<SmsFlashPromotionSession> selectByExample(SmsFlashPromotionSessionExample example);
|
||||
|
||||
SmsFlashPromotionSession selectByPrimaryKey(Long id);
|
||||
|
||||
int updateByExampleSelective(@Param("record") SmsFlashPromotionSession record, @Param("example") SmsFlashPromotionSessionExample example);
|
||||
|
||||
int updateByExample(@Param("record") SmsFlashPromotionSession record, @Param("example") SmsFlashPromotionSessionExample example);
|
||||
|
||||
int updateByPrimaryKeySelective(SmsFlashPromotionSession record);
|
||||
|
||||
int updateByPrimaryKey(SmsFlashPromotionSession record);
|
||||
}
|
||||
Reference in New Issue
Block a user