yujian
2019-04-22 b6c37e4bc38db88a360d0f2c6099183f9bb75bdc
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);
   }
}