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.
21 lines
632 B
Java
21 lines
632 B
Java
3 years ago
|
package com.glxp.api.dao.thrsys;
|
||
|
|
||
|
import com.glxp.api.entity.thrsys.ThrSystemDetailEntity;
|
||
|
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 ThrSystemDetailDao {
|
||
|
|
||
|
|
||
|
boolean updateBasicThirdSysDetail(ThrSystemDetailEntity basicThirdSysEntity);
|
||
|
|
||
|
ThrSystemDetailEntity selectByKey(@Param("key") String key, @Param("thirdSys") String thirdSys);
|
||
|
|
||
|
List<ThrSystemDetailEntity> filterBasicThirdSysDetail(FilterBasicThirdSysDetailRequest filterBasicThirdSysDetailRequest);
|
||
|
|
||
|
}
|