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.
72 lines
1.5 KiB
72 lines
1.5 KiB
package com.ruoyi.programManagement.service;
|
|
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
|
import com.ruoyi.programManagement.entity.BEnterpriseNew;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
* 企业新表Service接口
|
|
*
|
|
* @author ruoyi
|
|
* @since 2023-12-12
|
|
*/
|
|
public interface IBEnterpriseNewService extends IService<BEnterpriseNew> {
|
|
/**
|
|
* 查询企业新表
|
|
*
|
|
* @param id 企业新表主键
|
|
* @return 企业新表
|
|
*/
|
|
public BEnterpriseNew selectBEnterpriseNewById(Long id);
|
|
|
|
/**
|
|
* 查询企业新表列表
|
|
*
|
|
* @param bEnterpriseNew 企业新表
|
|
* @return 企业新表集合
|
|
*/
|
|
List<BEnterpriseNew> selectBEnterpriseNewList(BEnterpriseNew bEnterpriseNew);
|
|
|
|
/**
|
|
* 新增企业新表
|
|
*
|
|
* @param bEnterpriseNew 企业新表
|
|
* @return 结果
|
|
*/
|
|
int insertBEnterpriseNew(BEnterpriseNew bEnterpriseNew);
|
|
|
|
/**
|
|
* 修改企业新表
|
|
*
|
|
* @param bEnterpriseNew 企业新表
|
|
* @return 结果
|
|
*/
|
|
int updateBEnterpriseNew(BEnterpriseNew bEnterpriseNew);
|
|
|
|
/**
|
|
* 批量删除企业新表
|
|
*
|
|
* @param ids 需要删除的企业新表主键集合
|
|
* @return 结果
|
|
*/
|
|
int deleteBEnterpriseNewByIds(Long[] ids);
|
|
|
|
/**
|
|
* 删除企业新表信息
|
|
*
|
|
* @param id 企业新表主键
|
|
* @return 结果
|
|
*/
|
|
int deleteBEnterpriseNewById(Long id);
|
|
|
|
|
|
/**
|
|
* 企业新表企业不存在计划表list
|
|
*
|
|
* @return list
|
|
*/
|
|
List<BEnterpriseNew> getList(BEnterpriseNew bEnterpriseNew);
|
|
}
|