|
|
@@ -3,17 +3,21 @@ package com.goafanti.common.dao;
|
|
|
import com.goafanti.app.bo.ProjectBo;
|
|
|
import com.goafanti.app.bo.ProjectDetailBo;
|
|
|
import com.goafanti.business.bo.BusinessProjectBo;
|
|
|
-import com.goafanti.common.model.BusinessProject;
|
|
|
-import com.goafanti.common.model.BusinessProjectExample;
|
|
|
-import com.goafanti.order.bo.Outproject;
|
|
|
import com.goafanti.common.model.BusinessCategory;
|
|
|
+import com.goafanti.common.model.BusinessProject;
|
|
|
+import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
import java.util.List;
|
|
|
import java.util.Map;
|
|
|
|
|
|
-import org.apache.ibatis.annotations.Param;
|
|
|
-
|
|
|
+/**
|
|
|
+* @author Administrator
|
|
|
+* @description 针对表【business_project】的数据库操作Mapper
|
|
|
+* @createDate 2024-05-13 11:54:10
|
|
|
+* @Entity com.goafanti.common.model.BusinessProject
|
|
|
+*/
|
|
|
public interface BusinessProjectMapper {
|
|
|
+
|
|
|
int deleteByPrimaryKey(String id);
|
|
|
|
|
|
int insert(BusinessProject record);
|
|
|
@@ -24,11 +28,7 @@ public interface BusinessProjectMapper {
|
|
|
|
|
|
int updateByPrimaryKeySelective(BusinessProject record);
|
|
|
|
|
|
- /**
|
|
|
- * This method was generated by MyBatis Generator. This method corresponds to the database table business_project
|
|
|
- * @mbg.generated Thu Dec 05 10:07:00 CST 2019
|
|
|
- */
|
|
|
- int updateByPrimaryKey(BusinessProject record);
|
|
|
+ int updateByPrimaryKey(BusinessProject record);
|
|
|
|
|
|
int getBnamecount(String bname);
|
|
|
|
|
|
@@ -48,6 +48,9 @@ public interface BusinessProjectMapper {
|
|
|
List<BusinessCategory> selectBusinessProjectCatalog();
|
|
|
|
|
|
|
|
|
+ /**
|
|
|
+ * @return
|
|
|
+ */
|
|
|
List<Map> selectProjectAndTypeAll();
|
|
|
|
|
|
|