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.

118 lines
2.4 KiB

package com.ruoyi.programManagement.service;
import com.baomidou.mybatisplus.extension.service.IService;
import com.ruoyi.programManagement.entity.BPlanEnterprise;
import com.ruoyi.programManagement.entity.request.*;
import com.ruoyi.programManagement.entity.response.BPlanEnterPriseTreeResponse;
import com.ruoyi.programManagement.entity.response.BPlanEnterpriseResponse;
2 years ago
import com.ruoyi.programManagement.entity.response.BPlanEnterpriseZhifaResponse;
2 years ago
import com.ruoyi.programManagement.entity.response.zhifaPlanResponse;
2 years ago
import java.util.List;
import java.util.Map;
/**
* (BPlanEnterprise)
*
* @author wu
* @since 2023-09-07 09:43:06
*/
public interface BPlanEnterpriseService extends IService<BPlanEnterprise> {
2 years ago
/**
*
*
* @param bPlanEnterprise
* @return
*/
public List<BPlanEnterpriseResponse> selectBPlanEnterpriseList(BPlanEnterprise bPlanEnterprise);
/**
* planId
*
* @param planId id
*/
void deleteByPlanId(Long planId);
/**
* -
2 years ago
*
* @param req
* @return
*/
2 years ago
List<BPlanEnterpriseZhifaResponse>getZhifa (checkResultRequest req);
2 years ago
/**
*
*
* @return
*/
2 years ago
List<BPlanEnterprise> page(BPlanEnterprisePageRequest req);
/**
*
*
* @return
*/
Map<String, Object> getzhifacount(zhifaRequest req);
/**
*
*
* @return
*/
List<zhifaPlanResponse> getplan();
/**
*
*
* @return
* @Parm req
*/
Map<String, Object> getPlanMx(PlanMxRequest req);
2 years ago
/**
*
*
* @param id
* @return
*/
BPlanEnterprise selectById(String id);
1 year ago
/**
*
1 year ago
* @param req
* @return
*/
List<BPlanEnterPriseTreeResponse> getShouyeList(BPlanEnterprisePageRequest req);
1 year ago
/**
*
* @param idList
*/
void updateIdList(List<String> idList);
/**
*
* @param bPlanEnterprise
*/
void insert(BPlanEnterpriseRequest bPlanEnterprise);
/**
*
* @param bPlanEnterprise
*/
void updatePlan(BPlanEnterpriseRequest bPlanEnterprise);
}