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.
udi-spms-java/src/main/java/com/glxp/api/dao/thrsys/ThrSystemBusApiDao.java

26 lines
880 B
Java

package com.glxp.api.dao.thrsys;
import com.glxp.api.dao.BaseMapperPlus;
import com.glxp.api.entity.thrsys.ThrOrderEntity;
import com.glxp.api.entity.thrsys.ThrSystemBusApiEntity;
import com.glxp.api.req.thrsys.FilterBasicThirdSysDetailRequest;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@Mapper
public interface ThrSystemBusApiDao extends BaseMapperPlus<ThrSystemBusApiDao, ThrSystemBusApiEntity, ThrSystemBusApiEntity> {
boolean insertSysBusApi(ThrSystemBusApiEntity basicThirdSysEntity);
boolean updateSysBusApi(ThrSystemBusApiEntity basicThirdSysEntity);
List<ThrSystemBusApiEntity> filterSysBusApi(FilterBasicThirdSysDetailRequest filterBasicThirdSysDetailRequest);
boolean deleteById(@Param("id") Integer id);
ThrSystemBusApiEntity selectByCode(@Param("code") String code);
}