Authored by Zhang

<SRS> delete wrong file.

package com.yoho.unions.channel.service;
import com.yoho.service.model.union.request.AddGDTActualCostRequestVO;
import com.yoho.unions.dal.IChannelReportFormDAO;
import com.yoho.unions.dal.model.ChannelReportForm;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
/**
* Created by yoho on 2017/4/27.
*/
@Service
public class ChannelReportFormServiceImpl implements IChannelReportFormService {
static Logger logger = LoggerFactory.getLogger(ChannelReportFormServiceImpl.class);
@Autowired
private IChannelReportFormDAO channelReportFormDAO;
@Autowired
private IChannelReportFormUidDAO iChannelReportFormUidDAO;
@Override
public void addGDTActualCost(AddGDTActualCostRequestVO requestVO) {
ChannelReportForm channelReportForm = new ChannelReportForm();
channelReportForm.setUid(requestVO.getUid());
channelReportForm.setAppKey(requestVO.getAppKey());
channelReportForm.setActualCost(requestVO.getActualCost());
channelReportForm.setBeginTime(requestVO.getBeginTime());
channelReportForm.setEndTime(requestVO.getEndTime());
channelReportFormDAO.insertSelective(channelReportForm);
}
@Override
public int getUidStatus(Integer uid) {
return iChannelReportFormUidDAO.selectUidStatus(uid);
}
}