admin
2020-07-04 f862a844ea7e212f8cc0622b858308e2b91dca2e
fanli/src/main/java/com/yeshi/fanli/controller/admin/LostOrderAdminController.java
@@ -6,6 +6,7 @@
import javax.annotation.Resource;
import com.yeshi.fanli.entity.accept.AdminAcceptData;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.yeshi.utils.JsonUtil;
@@ -36,7 +37,7 @@
    * @param out
    */
   @RequestMapping("query")
   public void query(String callback, Integer pageIndex, Integer pageSize, String key, Integer state,
   public void query(AdminAcceptData acceptData, String callback, Integer pageIndex, Integer pageSize, String key, Integer state,
         Integer handleType, Integer type, PrintWriter out) {
      
      if (pageIndex == null || pageIndex < 0){
@@ -126,7 +127,7 @@
    * @param out
    */
   @RequestMapping("passOrder")
   public void passOrder(String callback, Long id, PrintWriter out) {
   public void passOrder(AdminAcceptData acceptData,String callback, Long id, PrintWriter out) {
      
      if (id == null) {
         JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("ID不能为空"));
@@ -164,7 +165,7 @@
    * @param out
    */
   @RequestMapping("rejectOrder")
   public void rejectOrder(String callback, Long id, String reason, PrintWriter out) {
   public void rejectOrder(AdminAcceptData acceptData,String callback, Long id, String reason, PrintWriter out) {
      if (id == null) {
         JsonUtil.printMode(out, callback, JsonUtil.loadFalseResult("ID不能为空"));
         return;