This commit is contained in:
caixiang
2022-06-22 10:23:56 +08:00
parent 3b7b592a16
commit 5d631e77c2
13 changed files with 51 additions and 26 deletions

View File

@@ -0,0 +1,16 @@
package com.cnbm.basic.mapper;
import com.cnbm.common.dao.BaseDao;
import com.cnbm.basic.entity.ProductType;
import org.apache.ibatis.annotations.Mapper;
/**
* 产品类型 表
*
* @author why
* @since 2022-06-21
*/
@Mapper
public interface ProductTypeMapper extends BaseDao<ProductType> {
}