删掉了 ,spc不需要的模块

This commit is contained in:
caixiang
2022-06-30 15:28:19 +08:00
parent c15c0e1f1c
commit 4c2e20bf0d
27 changed files with 152 additions and 461 deletions

View File

@@ -8,7 +8,7 @@ import org.apache.ibatis.annotations.Mapper;
* 产品类型 表
*
* @author why
* @since 2022-06-21
* @since 2022-06-30
*/
@Mapper
public interface ProductTypeMapper extends BaseDao<ProductType> {

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.cnbm.generator.code.mapper.ProductTypeMapper">
</mapper>

View File

@@ -0,0 +1,16 @@
package com.cnbm.basic.mapper;
import com.cnbm.common.dao.BaseDao;
import com.cnbm.basic.entity.Unit;
import org.apache.ibatis.annotations.Mapper;
/**
* 单位 表
*
* @author why
* @since 2022-06-30
*/
@Mapper
public interface UnitMapper extends BaseDao<Unit> {
}

View File

@@ -0,0 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.cnbm.generator.code.mapper.UnitMapper">
</mapper>