product_features表

This commit is contained in:
2022-07-20 15:14:39 +08:00
parent 1830bb64ea
commit 718ad8a8c2
8 changed files with 542 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
package com.cnbm.basic.mapper;
import com.cnbm.common.dao.BaseDao;
import com.cnbm.basic.entity.ProductFeatures;
import org.apache.ibatis.annotations.Mapper;
/**
* 产品特性 表
*
* @author why
* @since 2022-07-15
*/
@Mapper
public interface ProductFeaturesMapper extends BaseDao<ProductFeatures> {
}