You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

67 lines
1.5 KiB
Java

package com.ruoyi.baseinfo.service;
import java.util.List;
import com.ruoyi.baseinfo.domain.BasePlandetailInfo;
/**
* Service
*
* @author CaesarBao
* @date 2020-10-23
*/
public interface IBasePlandetailInfoService
{
/**
*
*
* @param objid ID
* @return
*/
public BasePlandetailInfo selectBasePlandetailInfoById(Long objid);
/**
*
*
* @param basePlandetailInfo
* @return
*/
public List<BasePlandetailInfo> selectBasePlandetailInfoList(BasePlandetailInfo basePlandetailInfo);
/**
*
*
* @param basePlandetailInfo
* @return
*/
public int insertBasePlandetailInfo(BasePlandetailInfo basePlandetailInfo);
/**
*
*
* @param basePlandetailInfo
* @return
*/
public int updateBasePlandetailInfo(BasePlandetailInfo basePlandetailInfo);
/**
*
*
* @param ids ID
* @return
*/
public int deleteBasePlandetailInfoByIds(String ids);
/**
*
*
* @param objid ID
* @return
*/
public int deleteBasePlandetailInfoById(Long objid);
public int deleteBasePlandetailInfoByPlanIds(String ids);
public BasePlandetailInfo selectBasePlandetailInfoByPlanID(String planid);
}