|
|
package com.yoho.unions.channel.restapi;
|
|
|
|
|
|
import com.yoho.unions.channel.service.IMktCostReportFormService;
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
|
/**
|
|
|
* Created by yoho on 2017/4/26.
|
|
|
*/
|
|
|
@Controller
|
|
|
@RequestMapping("/mktReportForm")
|
|
|
public class MktCostReportFormController {
|
|
|
|
|
|
static Logger logger = LoggerFactory.getLogger(MktCostReportFormController.class);
|
|
|
|
|
|
@Autowired
|
|
|
IMktCostReportFormService mktCostReportFormService;
|
|
|
|
|
|
|
|
|
} |
...
|
...
|
|