正确注入方式:
@Autowired private TFeeMapper TFeeMapper;
错误注入方式
@Autowired private TFeeMapper tFeeMapper;
这样注入就找不到是哪个了。用@Primary 也可以解决上述报错。