admin
2020-04-27 04e85c19e6cafd1cd65ade89b76a4e9ee5211c08
fanli/src/main/java/com/yeshi/fanli/service/impl/user/PayInfoServiceImpl.java
@@ -4,7 +4,7 @@
import org.springframework.stereotype.Service;
import com.yeshi.fanli.dao.user.PayInfoDao;
import com.yeshi.fanli.dao.mybatis.PayInfoMapper;
import com.yeshi.fanli.entity.bus.user.PayInfo;
import com.yeshi.fanli.service.inter.user.PayInfoService;
@@ -12,10 +12,10 @@
public class PayInfoServiceImpl implements PayInfoService {
   @Resource
   private PayInfoDao payInfoDao;
   private PayInfoMapper payInfoMapper;
   public void save(PayInfo payInfo) {
      payInfoDao.save(payInfo);
      payInfoMapper.insertSelective(payInfo);
   }
}