|
@@ -10,16 +10,16 @@ import com.steerinfo.framework.service.pagehelper.PageHelper;
|
|
import io.swagger.annotations.ApiImplicitParam;
|
|
import io.swagger.annotations.ApiImplicitParam;
|
|
import io.swagger.annotations.ApiImplicitParams;
|
|
import io.swagger.annotations.ApiImplicitParams;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
import io.swagger.annotations.ApiModelProperty;
|
|
-//import org.omg.CORBA.OBJ_ADAPTER;
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.web.bind.annotation.*;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
import java.math.BigDecimal;
|
|
import java.math.BigDecimal;
|
|
-import java.util.Date;
|
|
|
|
import java.util.HashMap;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Map;
|
|
|
|
|
|
|
|
+//import org.omg.CORBA.OBJ_ADAPTER;
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* AmstruckInwardPlan RESTful接口:
|
|
* AmstruckInwardPlan RESTful接口:
|
|
* @author generator
|
|
* @author generator
|
|
@@ -137,7 +137,8 @@ public class AmstruckInwardPlanController extends BaseRESTfulController {
|
|
Integer apiId,
|
|
Integer apiId,
|
|
Integer planStatus,
|
|
Integer planStatus,
|
|
String carrierId,
|
|
String carrierId,
|
|
- Integer planId) {
|
|
|
|
|
|
+ Integer planId,
|
|
|
|
+ String con) {
|
|
if (mapValue == null) {
|
|
if (mapValue == null) {
|
|
mapValue = new HashMap<>();
|
|
mapValue = new HashMap<>();
|
|
}
|
|
}
|
|
@@ -147,6 +148,9 @@ public class AmstruckInwardPlanController extends BaseRESTfulController {
|
|
if (planId != null && !"undefined".equals(planId.toString())) {
|
|
if (planId != null && !"undefined".equals(planId.toString())) {
|
|
mapValue.put("planId",new BigDecimal(planId));
|
|
mapValue.put("planId",new BigDecimal(planId));
|
|
}
|
|
}
|
|
|
|
+ if(con != null && !"null".equals(con)){
|
|
|
|
+ mapValue.put("con","%" + con + "%");
|
|
|
|
+ }
|
|
List<Map<String, Object>> columnList = null;
|
|
List<Map<String, Object>> columnList = null;
|
|
PageHelper.startPage(pageNum, pageSize);
|
|
PageHelper.startPage(pageNum, pageSize);
|
|
if(planStatus == 100){
|
|
if(planStatus == 100){
|