| | |
| | | import java.util.List; |
| | | import java.util.Map; |
| | | |
| | | import org.apache.commons.logging.Log; |
| | | import org.apache.commons.logging.LogFactory; |
| | | import org.slf4j.Logger; |
| | | import org.slf4j.LoggerFactory; |
| | | import org.springframework.beans.factory.annotation.Autowired; |
| | | import org.springframework.stereotype.Service; |
| | | |
| | | import com.yssh.dao.DictRecordMapper; |
| | |
| | | import com.yssh.utils.DateUtils; |
| | | import com.yssh.utils.StringUtils; |
| | | |
| | | import javax.annotation.Resource; |
| | | |
| | | @Service |
| | | public class ForecastAnalyseServiceImpl implements IForecastAnalyseService{ |
| | | |
| | | protected final Log logger = LogFactory.getLog(this.getClass()); |
| | | |
| | | @Autowired |
| | | @Resource |
| | | private ICommonService commonService; |
| | | |
| | | @Autowired |
| | | @Resource |
| | | private SuYuanMapper suYuanMapper; |
| | | |
| | | @Autowired |
| | | @Resource |
| | | private DictRecordMapper dictRecordMapper; |
| | | |
| | | @Autowired |
| | | @Resource |
| | | private ThuAccuracyMapper thuAccuracyMapper; |
| | | |
| | | @Override |
| | |
| | | } |
| | | return result; |
| | | } |
| | | |
| | | } |