parent
34b5051c7c
commit
770e2988ac
@ -0,0 +1,12 @@
|
||||
package com.macro.mall.dao;
|
||||
|
||||
import com.macro.mall.dto.PmsProductAttributeCategoryItem;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 自定义商品属性分类Dao
|
||||
*/
|
||||
public interface PmsProductAttributeCategoryDao {//商品属性分类
|
||||
List<PmsProductAttributeCategoryItem> getListWithAttr();
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.macro.mall.dao;
|
||||
|
||||
import com.macro.mall.dto.ProductAttrInfo;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 自定义商品属性Dao
|
||||
*/
|
||||
public interface PmsProductAttributeDao {//商品属性
|
||||
List<ProductAttrInfo> getProductAttrInfo(@Param("id") Long productCategoryId);
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.macro.mall.dao;
|
||||
|
||||
import com.macro.mall.model.PmsProductCategoryAttributeRelation;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 自定义商品分类和属性关系Dao
|
||||
*/
|
||||
public interface PmsProductCategoryAttributeRelationDao {//商品分类属性关系
|
||||
int insertList(@Param("list") List<PmsProductCategoryAttributeRelation> productCategoryAttributeRelationList);
|
||||
}
|
@ -0,0 +1,12 @@
|
||||
package com.macro.mall.dao;
|
||||
|
||||
import com.macro.mall.dto.PmsProductCategoryWithChildrenItem;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 商品分类自定义Dao
|
||||
*/
|
||||
public interface PmsProductCategoryDao {//商品分类
|
||||
List<PmsProductCategoryWithChildrenItem> listWithChildren();
|
||||
}
|
@ -0,0 +1,15 @@
|
||||
package com.macro.mall.dao;
|
||||
|
||||
import com.macro.mall.dto.PmsProductResult;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
|
||||
/**
|
||||
* 商品自定义Dao
|
||||
*/
|
||||
public interface PmsProductDao {
|
||||
/**
|
||||
* 获取商品编辑信息
|
||||
*/
|
||||
PmsProductResult getUpdateInfo(@Param("id") Long id);//获取更新信息
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.macro.mall.dao;
|
||||
|
||||
import com.macro.mall.model.PmsProductLadder;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 自定义会员阶梯价格Dao
|
||||
*/
|
||||
public interface PmsProductLadderDao {//商品阶梯层次
|
||||
int insertList(@Param("list") List<PmsProductLadder> productLadderList);
|
||||
}
|
@ -0,0 +1,13 @@
|
||||
package com.macro.mall.dao;
|
||||
|
||||
import com.macro.mall.model.PmsProductVertifyRecord;
|
||||
import org.apache.ibatis.annotations.Param;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 商品审核日志自定义dao
|
||||
*/
|
||||
public interface PmsProductVertifyRecordDao {//商品审核记录
|
||||
int insertList(@Param("list") List<PmsProductVertifyRecord> list);
|
||||
}
|
Loading…
Reference in new issue