修改 总装
parent
15289fc6d6
commit
9141703d59
@ -0,0 +1,45 @@
|
|||||||
|
package com.ruoyi.web.controller.broad;
|
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONArray;
|
||||||
|
import com.ruoyi.system.domain.OrderInfo;
|
||||||
|
import com.ruoyi.system.domain.QualityInfo;
|
||||||
|
import com.ruoyi.system.service.IBroadDataService;
|
||||||
|
import io.swagger.annotations.ApiOperation;
|
||||||
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
|
import org.springframework.stereotype.Controller;
|
||||||
|
import org.springframework.web.bind.annotation.PostMapping;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
import org.springframework.web.bind.annotation.ResponseBody;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
@Controller
|
||||||
|
@RequestMapping("/broad/zhou")
|
||||||
|
@ApiOperation("周看板98寸")
|
||||||
|
public class ZhouController {
|
||||||
|
|
||||||
|
@Autowired
|
||||||
|
private IBroadDataService service;
|
||||||
|
|
||||||
|
@PostMapping("/selectProductInStore")
|
||||||
|
@ApiOperation("周产量统计")
|
||||||
|
@ResponseBody
|
||||||
|
public String zhou_selectProductInStore() {
|
||||||
|
|
||||||
|
// IMOS_PR_PRODUCT_BARCODE
|
||||||
|
return JSONArray.toJSONString( service.zhou_selectProductInStore());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@PostMapping("/selectOrderRateInfo")
|
||||||
|
@ApiOperation("周订单执行情况")
|
||||||
|
@ResponseBody
|
||||||
|
public String zhou_selectOrderRateInfo() {
|
||||||
|
return JSONArray.toJSONString(service.zhou_selectOrderRateInfo());
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue