|
|
@@ -91,23 +91,7 @@ public class AmsshipDeliveryAttorneyController extends BaseRESTfulController {
|
|
|
|
|
|
|
|
|
|
|
|
-
|
|
|
- @ApiOperation(value="获取详细信息", notes="根据url的id来获取详细信息")
|
|
|
- @ApiImplicitParam(paramType = "path", name = "id", value = "ID", required = true, dataType = "BigDecimal")
|
|
|
- @GetMapping(value = "/getPortName")
|
|
|
- public RESTfulResult getPortName(){
|
|
|
- List<Map<String,Object>> list= amsshipDeliveryAttorneyService.getPortName();
|
|
|
- return success(list);
|
|
|
- }
|
|
|
-
|
|
|
- @ApiOperation(value="获取详细信息", notes="根据url的id来获取详细信息")
|
|
|
- @ApiImplicitParam(paramType = "path", name = "id", value = "ID", required = true, dataType = "BigDecimal")
|
|
|
|
|
|
- @GetMapping(value = "/getNoticeId")
|
|
|
- public RESTfulResult getNoticeId(){
|
|
|
- List<Map<String,Object>> list= amsshipDeliveryAttorneyService.getNoticeId();
|
|
|
- return success(list);
|
|
|
- }
|
|
|
|
|
|
@ApiOperation(value="获取详细信息", notes="根据url的id来获取详细信息")
|
|
|
@ApiImplicitParam(paramType = "path", name = "id", value = "ID", required = true, dataType = "BigDecimal")
|
|
|
@@ -154,7 +138,23 @@ public class AmsshipDeliveryAttorneyController extends BaseRESTfulController {
|
|
|
|
|
|
return success(amsshipDeliveryAttorneyService.getAttorneyId());
|
|
|
}
|
|
|
+
|
|
|
+ @ApiOperation(value="获取详细信息", notes="根据url的id来获取详细信息")
|
|
|
+ @ApiImplicitParam(paramType = "path", name = "id", value = "ID", required = true, dataType = "BigDecimal")
|
|
|
+ @GetMapping(value = "/getPortName")
|
|
|
+ public RESTfulResult getPortName(){
|
|
|
+ List<Map<String,Object>> list= amsshipDeliveryAttorneyService.getPortName();
|
|
|
+ return success(list);
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value="获取详细信息", notes="根据url的id来获取详细信息")
|
|
|
+ @ApiImplicitParam(paramType = "path", name = "id", value = "ID", required = true, dataType = "BigDecimal")
|
|
|
|
|
|
+ @GetMapping(value = "/getNoticeId")
|
|
|
+ public RESTfulResult getNoticeId(){
|
|
|
+ List<Map<String,Object>> list= amsshipDeliveryAttorneyService.getNoticeId();
|
|
|
+ return success(list);
|
|
|
+ }
|
|
|
|
|
|
* 获取发件人id
|
|
|
* @return
|