WisController.java 569 Bytes
package com.huaheng.api.wis.controller;

import com.huaheng.api.wis.service.IWisService;
import com.huaheng.framework.web.controller.BaseController;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

import javax.annotation.Resource;

/**
 * @author WIS
 */
@RestController
@RequestMapping("/api/wis")
public class WisController extends BaseController {

    @Resource
    private IWisService wisService;

    //todo 物料同步


    //todo 下发出入库单据


    //todo 订单回传
}