whyczh
2021-12-27 b7605191cf3b4502c20efdefd9af65954cfa8a1c
1
2
3
4
5
6
7
8
9
10
package com.whyc.mapper;
 
import com.whyc.pojo.Fbs9100State;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
public interface Fbs9100StateMapper extends CustomMapper<Fbs9100State>{
        List<Fbs9100State> searchByCondition(@Param("devErrcommcount") int devErrcommcount, @Param("uId") int uId);
}