Authored by tanling

总成本报表需求

  1 +package com.yoho.unions.channel.restapi;
  2 +
  3 +import com.yoho.unions.channel.service.IMktCostReportFormService;
  4 +import org.slf4j.Logger;
  5 +import org.slf4j.LoggerFactory;
  6 +import org.springframework.beans.factory.annotation.Autowired;
  7 +import org.springframework.stereotype.Controller;
  8 +import org.springframework.web.bind.annotation.RequestMapping;
  9 +
  10 +/**
  11 + * Created by yoho on 2017/4/26.
  12 + */
  13 +@Controller
  14 +@RequestMapping("/mktReportForm")
  15 +public class MktCostReportFormController {
  16 +
  17 + static Logger logger = LoggerFactory.getLogger(MktCostReportFormController.class);
  18 +
  19 + @Autowired
  20 + IMktCostReportFormService mktCostReportFormService;
  21 +
  22 +
  23 +}
  1 +package com.yoho.unions.channel.service;
  2 +
  3 +/**
  4 + * Created by yoho on 2017/4/26.
  5 + */
  6 +public interface IMktCostReportFormService {
  7 +}
  1 +package com.yoho.unions.channel.service.impl;
  2 +
  3 +import com.yoho.unions.channel.service.IMktCostReportFormService;
  4 +import org.springframework.stereotype.Service;
  5 +
  6 +/**
  7 + * Created by yoho on 2017/4/26.
  8 + */
  9 +@Service
  10 +public class MktCostReportFormServiceImpl implements IMktCostReportFormService {
  11 +}