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

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);
}