You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package com.ruoyi.programManagement.mapper;
|
|
|
|
|
|
|
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
|
import com.ruoyi.programManagement.entity.BPlanEnterprise;
|
|
|
|
import com.ruoyi.programManagement.entity.SzEntBasicInfo;
|
|
|
|
import com.ruoyi.programManagement.entity.request.checkResultRequest;
|
|
|
|
import com.ruoyi.programManagement.entity.response.BPlanEnterpriseZhifaResponse;
|
|
|
|
import org.apache.ibatis.annotations.Param;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 计划企业表(BPlanEnterprise)表数据库访问层
|
|
|
|
*
|
|
|
|
* @author wu
|
|
|
|
* @since 2023-09-07 09:43:06
|
|
|
|
*/
|
|
|
|
public interface BPlanEnterpriseMapper extends BaseMapper<BPlanEnterprise> {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 根据planId删除计划企业
|
|
|
|
*
|
|
|
|
* @param planId 计划id
|
|
|
|
*/
|
|
|
|
void deleteByPlanId(@Param("planId") Long planId);
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 根据planId获取计划企业
|
|
|
|
*
|
|
|
|
* @param planId 计划id
|
|
|
|
*/
|
|
|
|
List<SzEntBasicInfo> getByPlanId(Long planId);
|
|
|
|
|
|
|
|
|
|
|
|
List<BPlanEnterpriseZhifaResponse> getZhifa(@Param("req") checkResultRequest req);
|
|
|
|
}
|
|
|
|
|