dromara / easy-es

A foolproof Elasticsearch ORM framework that is easy to use, requires minimal coding, and is highly expandable...
Apache License 2.0
1.42k stars 230 forks source link

Mapper中写default接口实现不能注入调用 #95

Open wangyuanchen opened 10 months ago

wangyuanchen commented 10 months ago

`public interface DocumentMapper extends BaseMapper {

default Long selectRegisterCountByBotId(String botId) { List status = Arrays.asList(CommonStringConstant.Login.NormalStatus, CommonStringConstant.Login.ApplyStatus, CommonStringConstant.Login.SuccessStatus, CommonStringConstant.Login.FailedStatus); return selectCount(new LambdaEsQueryWrapper() .in(User::getStatus, status) .eq(User::getBotId, botId)); }

}`

如上,能否支持这种编码方式。