master
parent
f3df99688a
commit
05c25603a5
@ -0,0 +1,14 @@
|
|||||||
|
package com.macro.mall.dao;
|
||||||
|
|
||||||
|
import com.macro.mall.model.CmsPrefrenceAreaProductRelation;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自定义优选和商品关系操作
|
||||||
|
* DAO数据库访问对象
|
||||||
|
*/
|
||||||
|
public interface CmsPrefrenceAreaProductRelationDao {//优选区域商品关系
|
||||||
|
int insertList(@Param("list") List<CmsPrefrenceAreaProductRelation> prefrenceAreaProductRelationList);
|
||||||
|
}
|
@ -0,0 +1,13 @@
|
|||||||
|
package com.macro.mall.dao;
|
||||||
|
|
||||||
|
import com.macro.mall.model.CmsSubjectProductRelation;
|
||||||
|
import org.apache.ibatis.annotations.Param;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自定义商品和专题关系操作
|
||||||
|
*/
|
||||||
|
public interface CmsSubjectProductRelationDao {//专题商品关系
|
||||||
|
int insertList(@Param("list") List<CmsSubjectProductRelation> subjectProductRelationList);//插入列表
|
||||||
|
}
|
Loading…
Reference in new issue