12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379 |
- package com.steerinfo.dil.controller;
- import com.steerinfo.dil.feign.TmsshipFeign;
- import com.steerinfo.dil.feign.TmsTrainFeign;
- import com.steerinfo.dil.feign.TmsTruckFeign;
- import com.steerinfo.dil.util.BaseRESTfulController;
- import com.steerinfo.framework.controller.RESTfulResult;
- import io.swagger.annotations.ApiImplicitParam;
- import io.swagger.annotations.ApiImplicitParams;
- import io.swagger.annotations.ApiOperation;
- import org.springframework.beans.factory.annotation.Autowired;
- import org.springframework.web.bind.annotation.*;
- import java.math.BigDecimal;
- import java.util.HashMap;
- import java.util.Map;
- /**
- * @author luobang
- * @create 2021-09-17 14:11
- */
- @RestController
- @RequestMapping("${api.version}/tms")
- public class TMSController extends BaseRESTfulController {
- @Autowired
- private TmsTruckFeign tmsTruckFeign;
- @Autowired
- private TmsTrainFeign tmsTrainFeign;
- @Autowired
- TmsshipFeign tmsshipFeign;
- /*======================================船运==========================================*/
- /**
- * 驳船
- *
- * @param mapValue
- * @param pageNum
- * @param pageSize
- * @param apiId
- * @return
- */
- @PostMapping("getBargeOperationList")
- @ApiOperation(value = "展示驳船")
- public RESTfulResult getBargeOperationList(@RequestBody(required = false) Map<String, Object> mapValue,
- Integer pageNum,
- Integer pageSize,
- Integer apiId) {
- if (mapValue == null) {
- mapValue = new HashMap<>();
- }
- return tmsshipFeign.getBargeOperationList(mapValue, pageNum, pageSize, apiId);
- }
- @PostMapping("selectBargeOperation/{bargeOperationId}")
- @ApiOperation(value = "通过id查询驳船")
- RESTfulResult selectBargeOperation(@PathVariable("bargeOperationId") BigDecimal bargeOperationId) {
- return tmsshipFeign.selectBargeOperation(bargeOperationId);
- }
- @PostMapping("getBargeOperation/{bargeOperationId}")
- @ApiOperation(value = "查询驳船")
- RESTfulResult getBargeOperation(@PathVariable("bargeOperationId") BigDecimal bargeOperationId) {
- return tmsshipFeign.getBargeOperation(bargeOperationId);
- }
- @PostMapping("deleteBargeOperation/{bargeOperationId}")
- @ApiOperation(value = "逻辑删除驳船")
- RESTfulResult deleteBargeOperation(@PathVariable("bargeOperationId") BigDecimal bargeOperationId) {
- return tmsshipFeign.deleteBargeOperation(bargeOperationId);
- }
- @PostMapping("updateBargeOperation")
- @ApiOperation(value = "修改驳船")
- RESTfulResult updateBargeOperation(@RequestBody Map<String, Object> tmsshipBargeOperation) {
- return tmsshipFeign.updateBargeOperation(tmsshipBargeOperation);
- }
- @PostMapping("addBargeOperation")
- @ApiOperation(value = "新增驳船")
- RESTfulResult addBargeOperation(@RequestBody Map<String, Object> map) {
- return tmsshipFeign.addBargeOperation(map);
- }
- @PostMapping("addTmsShipEntryWharyResult")
- @ApiOperation(value = "新增抵港")
- RESTfulResult addTmsShipEntryWharyResult(@RequestBody Map<String, Object> mapVal) {
- return tmsshipFeign.addTmsShipEntryWharyResult(mapVal);
- }
- @PostMapping("addTmsShipOutWharyResult")
- @ApiOperation(value = "新增离港")
- RESTfulResult addTmsShipOutWharyResult(@RequestBody Map<String, Object> mapVal) {
- return tmsshipFeign.addTmsShipOutWharyResult(mapVal);
- }
- /**
- * 装船
- *
- * @param mapValue
- * @param pageNum
- * @param pageSize
- * @param apiId
- * @return
- */
- @PostMapping("getLoadShipList")
- @ApiOperation(value = "展示装船")
- public RESTfulResult getLoadShipList(@RequestBody(required = false) Map<String, Object> mapValue,
- Integer pageNum,
- Integer pageSize,
- Integer apiId) {
- if (mapValue == null) {
- mapValue = new HashMap<>();
- }
- return tmsshipFeign.getLoadShipList(mapValue, pageNum, pageSize, apiId);
- }
- @PostMapping("getLoadShip/{resultId}")
- @ApiOperation(value = "查询装船")
- RESTfulResult getLoadShip(@PathVariable("resultId") BigDecimal resultId) {
- return tmsshipFeign.getLoadShip(resultId);
- }
- @PostMapping("selectLoadShip/{resultId}")
- @ApiOperation(value = "通过id查询装船")
- RESTfulResult selectLoadShip(@PathVariable("resultId") BigDecimal resultId) {
- return tmsshipFeign.selectLoadShip(resultId);
- }
- @PostMapping("deleteLoadShip/{resultId}")
- @ApiOperation(value = "逻辑删除装船")
- RESTfulResult deleteLoadShip(@PathVariable("resultId") BigDecimal resultId) {
- return tmsshipFeign.deleteLoadShip(resultId);
- }
- @PostMapping("updateLoadShip")
- @ApiOperation(value = "修改装船")
- RESTfulResult updateLoadShip(@RequestBody Map<String, Object> tmsshipLoadShipResult) {
- return tmsshipFeign.updateLoadShip(tmsshipLoadShipResult);
- }
- @PostMapping("addLoadShip")
- @ApiOperation(value = "新增装船")
- RESTfulResult addLoadShip(@RequestBody Map<String, Object> map) {
- return tmsshipFeign.addLoadShip(map);
- }
- /**
- * 位置作业
- *
- * @param mapValue
- * @param pageNum
- * @param pageSize
- * @param apiId
- * @return
- */
- @PostMapping("getShipLocationList")
- @ApiOperation(value = "展示位置作业")
- public RESTfulResult getShipLocationList(@RequestBody(required = false) Map<String, Object> mapValue,
- Integer pageNum,
- Integer pageSize,
- Integer apiId) {
- if (mapValue == null) {
- mapValue = new HashMap<>();
- }
- return tmsshipFeign.getShipLocationList(mapValue, pageNum, pageSize, apiId);
- }
- @PostMapping("getShipLocation/{locationId}")
- @ApiOperation(value = "查询位置作业")
- RESTfulResult getShipLocation(@PathVariable("locationId") BigDecimal locationId) {
- return tmsshipFeign.getShipLocation(locationId);
- }
- @PostMapping("selectShipLocation/{locationId}")
- @ApiOperation(value = "通过id查询位置作业")
- RESTfulResult selectShipLocation(@PathVariable("locationId") BigDecimal locationId) {
- return tmsshipFeign.selectShipLocation(locationId);
- }
- @PostMapping("deleteShipLocation/{locationId}")
- @ApiOperation(value = "逻辑删除位置作业")
- RESTfulResult deleteShipLocation(@PathVariable("locationId") BigDecimal locationId) {
- return tmsshipFeign.deleteShipLocation(locationId);
- }
- @PostMapping("updateShipLocation")
- @ApiOperation(value = "修改位置作业")
- RESTfulResult updateShipLocation(@RequestBody Map<String, Object> tmsshipShipLocation) {
- return tmsshipFeign.updateShipLocation(tmsshipShipLocation);
- }
- @PostMapping("addShipLocation")
- @ApiOperation(value = "新增位置作业")
- RESTfulResult addShipLocation(@RequestBody Map<String, Object> map) {
- return tmsshipFeign.addShipLocation(map);
- }
- /**
- * 水路货物运单
- *
- * @param mapValue
- * @param pageNum
- * @param pageSize
- * @param apiId
- * @return
- */
- @PostMapping("listAllOrders")
- @ApiOperation(value = "展示水路货物运单")
- public RESTfulResult listAllOrders(@RequestBody(required = false) Map<String, Object> mapValue,
- Integer pageNum,
- Integer pageSize,
- Integer apiId) {
- if (mapValue == null) {
- mapValue = new HashMap<>();
- }
- return tmsshipFeign.listAllOrders(mapValue, pageNum, pageSize, apiId);
- }
- /**
- * 展示船只信息
- *
- * @param mapValue
- * @param pageNum
- * @param pageSize
- * @param apiId
- * @return
- */
- @PostMapping("getCapacityList")
- @ApiOperation(value = "展示船只信息")
- public RESTfulResult getCapacityList(@RequestBody(required = false) Map<String, Object> mapValue,
- Integer pageNum,
- Integer pageSize,
- Integer apiId) {
- if (mapValue == null) {
- mapValue = new HashMap<>();
- }
- return tmsshipFeign.getCapacityList(mapValue, pageNum, pageSize, apiId);
- }
- /**
- * 卸船作业
- *
- * @param mapValue
- * @param pageNum
- * @param pageSize
- * @param apiId
- * @return
- */
- @PostMapping("getUnLoadShipList")
- @ApiOperation(value = "展示卸船作业信息列表")
- public RESTfulResult getUnLoadShipList(@RequestBody(required = false) Map<String, Object> mapValue,
- Integer pageNum,
- Integer pageSize,
- Integer apiId) {
- if (mapValue == null) {
- mapValue = new HashMap<>();
- }
- return tmsshipFeign.getUnLoadShipList(mapValue, pageNum, pageSize, apiId);
- }
- @PostMapping("getUnloadShip/{resultId}")
- @ApiOperation(value = "查询卸船作业")
- RESTfulResult getUnloadShip(@PathVariable("resultId") BigDecimal resultId) {
- return tmsshipFeign.getUnloadShip(resultId);
- }
- @PostMapping("selectUnLoadShip/{resultId}")
- @ApiOperation(value = "通过id查询卸船作业")
- RESTfulResult selectUnLoadShip(@PathVariable("resultId") BigDecimal resultId) {
- return tmsshipFeign.selectUnLoadShip(resultId);
- }
- @PostMapping("deleteUnLoadShip/{resultId}")
- @ApiOperation(value = "逻辑删除卸船作业")
- RESTfulResult deleteUnLoadShip(@PathVariable("resultId") BigDecimal resultId) {
- return tmsshipFeign.deleteUnLoadShip(resultId);
- }
- @PostMapping("updateUnLoadShip")
- @ApiOperation(value = "修改卸船作业")
- RESTfulResult updateUnLoadShip(@RequestBody Map<String, Object> tmsshipUnloadShipResult) {
- return tmsshipFeign.updateUnLoadShip(tmsshipUnloadShipResult);
- }
- @PostMapping("addUnLoadShip")
- @ApiOperation(value = "新增卸船作业")
- RESTfulResult addUnLoadShip(@RequestBody Map<String, Object> map) {
- return tmsshipFeign.addUnLoadShip(map);
- }
- /**
- * 水分质检
- *
- * @param mapValue
- * @param pageNum
- * @param pageSize
- * @param apiId
- * @return
- */
- @PostMapping("getWaterQualityResultList")
- @ApiOperation(value = "展示水分质检信息列表")
- public RESTfulResult getWaterQualityResultList(@RequestBody(required = false) Map<String, Object> mapValue,
- Integer pageNum,
- Integer pageSize,
- Integer apiId) {
- if (mapValue == null) {
- mapValue = new HashMap<>();
- }
- return tmsshipFeign.getWaterQualityResultList(mapValue, pageNum, pageSize, apiId);
- }
- @PostMapping("getWaterQuality/{resultId}")
- @ApiOperation(value = "查询水分质检")
- RESTfulResult getWaterQuality(@PathVariable("resultId") BigDecimal resultId) {
- return tmsshipFeign.getWaterQuality(resultId);
- }
- @PostMapping("selectWaterQualityResult/{resultId}")
- @ApiOperation(value = "通过id查询水分质检")
- RESTfulResult selectWaterQualityResult(@PathVariable("resultId") BigDecimal resultId) {
- return tmsshipFeign.selectWaterQualityResult(resultId);
- }
- @PostMapping("deleteWaterQualityResult/{resultId}")
- @ApiOperation(value = "逻辑删除水分质检")
- RESTfulResult deleteWaterQualityResult(@PathVariable("resultId") BigDecimal resultId) {
- return tmsshipFeign.deleteWaterQualityResult(resultId);
- }
- @PostMapping("updateWaterQualityResult")
- @ApiOperation(value = "修改水分质检")
- RESTfulResult updateWaterQualityResult(@RequestBody Map<String, Object> tmsshipWaterQualityResult) {
- return tmsshipFeign.updateWaterQualityResult(tmsshipWaterQualityResult);
- }
- @PostMapping("addWaterQualityResult")
- @ApiOperation(value = "新增水分质检")
- RESTfulResult addWaterQualityResult(@RequestBody Map<String, Object> map) {
- return tmsshipFeign.addWaterQualityResult(map);
- }
- /**
- * 船只信息
- *
- * @param mapValue
- * @param pageNum
- * @param pageSize
- * @param apiId
- * @return
- */
- @PostMapping("getCapacities")
- @ApiOperation(value = "展示船只信息列表")
- public RESTfulResult getCapacities(BigDecimal instructionsId,
- @RequestBody(required = false) Map<String, Object> mapValue,
- Integer pageNum,
- Integer pageSize,
- Integer apiId) {
- if (mapValue == null) {
- mapValue = new HashMap<>();
- }
- return tmsshipFeign.getCapacities(instructionsId, mapValue, pageNum, pageSize, apiId);
- }
- @PostMapping("getInstructionsCapacity/{instructionsCapacityId}")
- @ApiOperation(value = "查询船只信息")
- RESTfulResult getInstructionsCapacity(@PathVariable("instructionsCapacityId") BigDecimal instructionsCapacityId) {
- return tmsshipFeign.getInstructionsCapacity(instructionsCapacityId);
- }
- @PostMapping("deleteInstructionsCapacity/{instructionsCapacityId}")
- @ApiOperation(value = "逻辑删除船只信息")
- RESTfulResult deleteInstructionsCapacity(@PathVariable("instructionsCapacityId") BigDecimal instructionsCapacityId) {
- return tmsshipFeign.deleteInstructionsCapacity(instructionsCapacityId);
- }
- @PostMapping("updateInstructionsCapacity")
- @ApiOperation(value = "修改船只信息")
- RESTfulResult updateInstructionsCapacity(@RequestBody Map<String, Object> omsshipInstructionsCapacity) {
- return tmsshipFeign.updateInstructionsCapacity(omsshipInstructionsCapacity);
- }
- @PostMapping("addInstructionsCapacity")
- @ApiOperation(value = "新增船只信息")
- RESTfulResult addInstructionsCapacity(@RequestBody Map<String, Object> omsshipInstructionsCapacity) {
- return tmsshipFeign.addInstructionsCapacity(omsshipInstructionsCapacity);
- }
- /**
- * 装船指令
- *
- * @param mapValue
- * @param pageNum
- * @param pageSize
- * @param apiId
- * @return
- */
- @PostMapping("getShipMentInstructionsList")
- @ApiOperation(value = "展示装船指令列表")
- public RESTfulResult getShipMentInstructionsList(@RequestBody(required = false) Map<String, Object> mapValue,
- Integer pageNum,
- Integer pageSize,
- Integer apiId) {
- if (mapValue == null) {
- mapValue = new HashMap<>();
- }
- return tmsshipFeign.getShipMentInstructionsList(mapValue, pageNum, pageSize, apiId);
- }
- @PostMapping("getShipmentInstructions/{instructionsId}")
- @ApiOperation(value = "查询装船指令")
- RESTfulResult getShipmentInstructions(@PathVariable("instructionsId") BigDecimal instructionsId) {
- return tmsshipFeign.getShipmentInstructions(instructionsId);
- }
- @PostMapping("deleteByPrimaryKey/{instructionsId}")
- @ApiOperation(value = "逻辑删除装船指令")
- RESTfulResult deleteByPrimaryKey(@PathVariable("instructionsId") BigDecimal instructionsId) {
- return tmsshipFeign.deleteByPrimaryKey(instructionsId);
- }
- @PostMapping("updateIssueStatus/{shipmentInstructionsId}")
- @ApiOperation(value = "修改状态")
- RESTfulResult updateIssueStatus(@PathVariable("shipmentInstructionsId") BigDecimal shipmentInstructionsId) {
- return tmsshipFeign.updateIssueStatus(shipmentInstructionsId);
- }
- @PostMapping("updateShipmentInstructions")
- @ApiOperation(value = "修改装船指令")
- RESTfulResult updateShipmentInstructions(@RequestBody Map<String, Object> omsshipShipmentInstructions) {
- return tmsshipFeign.updateShipmentInstructions(omsshipShipmentInstructions);
- }
- @PostMapping("addShipmentInstructions")
- @ApiOperation(value = "新增装船指令")
- RESTfulResult addShipmentInstructions(@RequestBody Map<String, Object> omsshipShipmentInstructions) {
- return tmsshipFeign.addShipmentInstructions(omsshipShipmentInstructions);
- }
- /**
- * 货权转移
- *
- * @param mapValue
- * @param pageNum
- * @param pageSize
- * @param apiId
- * @return
- */
- @PostMapping("getAmsshipCargoTranferResultList")
- @ApiOperation(value = "展示货权转移")
- public RESTfulResult getAmsshipCargoTranferResultList(@RequestBody(required = false) Map<String, Object> mapValue,
- Integer pageNum,
- Integer pageSize,
- Integer apiId) {
- if (mapValue == null) {
- mapValue = new HashMap<>();
- }
- return tmsshipFeign.getAmsshipCargoTranferResultList(mapValue, pageNum, pageSize, apiId);
- }
- @PostMapping("insertamsshipCargoTransferResult")
- @ApiOperation(value = "新增货权转移")
- RESTfulResult insertamsshipCargoTransferResult(@RequestBody Map<String, Object> amsshipCargoTransferResult) {
- return tmsshipFeign.insertamsshipCargoTransferResult(amsshipCargoTransferResult);
- }
- @PostMapping("deleteByCargoId/{cargoTransferResultId}")
- @ApiOperation(value = "逻辑删除货权转移")
- RESTfulResult deleteByCargoId(@PathVariable("cargoTransferResultId") Integer cargoTransferResultId) {
- return tmsshipFeign.deleteByCargoId(cargoTransferResultId);
- }
- @PostMapping("editCargoTransferResult")
- @ApiOperation(value = "修改货权转移")
- RESTfulResult editCargoTransferResult(@RequestBody Map<String, Object> amsshipCargoTransferResult) {
- return tmsshipFeign.editCargoTransferResult(amsshipCargoTransferResult);
- }
- @PostMapping("selectByCargoTranferResultId/{cargoTransferResultId}")
- @ApiOperation(value = "通过id查询货权转移")
- RESTfulResult selectByCargoTranferResultId(@PathVariable("cargoTransferResultId") Integer cargoTransferResultId) {
- return tmsshipFeign.selectByCargoTranferResultId(cargoTransferResultId);
- }
- /**
- * 提货委托
- *
- * @param mapValue
- * @param pageNum
- * @param pageSize
- * @param apiId
- * @return
- */
- @PostMapping("getAmsshipDeliveryAttroneyList")
- @ApiOperation(value = "展示提货委托")
- public RESTfulResult getAmsshipDeliveryAttroneyList(@RequestBody(required = false) Map<String, Object> mapValue,
- Integer pageNum,
- Integer pageSize,
- Integer apiId) {
- if (mapValue == null) {
- mapValue = new HashMap<>();
- }
- return tmsshipFeign.getAmsshipDeliveryAttroneyList(mapValue, pageNum, pageSize, apiId);
- }
- @PostMapping("insertshipDeliveryAttorney")
- @ApiOperation(value = "新增提货委托")
- RESTfulResult insertshipDeliveryAttorney(@RequestBody Map<String, Object> amsshipDeliveryAttorney) {
- return tmsshipFeign.insertshipDeliveryAttorney(amsshipDeliveryAttorney);
- }
- @PostMapping("deleteByAttorneyId/{attorneyId}")
- @ApiOperation(value = "逻辑删除提货委托")
- RESTfulResult deleteByAttorneyId(@PathVariable("attorneyId") Integer attorneyId) {
- return tmsshipFeign.deleteByAttorneyId(attorneyId);
- }
- @PostMapping("editDeliveryAttroney")
- @ApiOperation(value = "修改提货委托")
- RESTfulResult editDeliveryAttroney(@RequestBody Map<String, Object> amsshipDeliveryAttorney) {
- return tmsshipFeign.editDeliveryAttroney(amsshipDeliveryAttorney);
- }
- @PostMapping("getDeliveryAttorneyId/{attorneyId}")
- @ApiOperation(value = "通过id查询提货委托")
- RESTfulResult getDeliveryAttorneyId(@PathVariable("attorneyId") Integer attorneyId) {
- return tmsshipFeign.getDeliveryAttorneyId(attorneyId);
- }
- @PostMapping("sendDeliveryAttorneyStatus/{attorneyId}")
- @ApiOperation(value = "下发提货委托")
- RESTfulResult sendDeliveryAttorneyStatus(@PathVariable("attorneyId") Integer attorneyId) {
- return tmsshipFeign.sendDeliveryAttorneyStatus(attorneyId);
- }
- /**
- * 放货通知
- *
- * @param mapValue
- * @param pageNum
- * @param pageSize
- * @param apiId
- * @return
- */
- @PostMapping("getshipDeliveryNoticeList")
- @ApiOperation(value = "展示放货通知")
- public RESTfulResult getshipDeliveryNoticeList(@RequestBody(required = false) Map<String, Object> mapValue,
- Integer pageNum,
- Integer pageSize,
- Integer apiId) {
- if (mapValue == null) {
- mapValue = new HashMap<>();
- }
- return tmsshipFeign.getshipDeliveryNoticeList(mapValue, pageNum, pageSize, apiId);
- }
- @PostMapping("insertDeliveryNotice")
- @ApiOperation(value = "新增放货通知")
- RESTfulResult insertDeliveryNotice(@RequestBody Map<String, Object> amsshipDeliveryNotice) {
- return tmsshipFeign.insertDeliveryNotice(amsshipDeliveryNotice);
- }
- @PostMapping("deleteByNoticeId/{noticeId}")
- @ApiOperation(value = "逻辑删除放货通知")
- RESTfulResult deleteByNoticeId(@PathVariable("noticeId") Integer noticeId) {
- return tmsshipFeign.deleteByNoticeId(noticeId);
- }
- @PostMapping("editDeliveryNotice")
- @ApiOperation(value = "修改放货通知")
- RESTfulResult editDeliveryNotice(@RequestBody Map<String, Object> editDeliveryNotice) {
- return tmsshipFeign.editDeliveryNotice(editDeliveryNotice);
- }
- @PostMapping("selectByNoticeId/{noticeId}")
- @ApiOperation(value = "通过id查询放货通知")
- RESTfulResult selectByNoticeId(@PathVariable("noticeId") Integer noticeId) {
- return tmsshipFeign.selectByNoticeId(noticeId);
- }
- @PostMapping("sendDeliveryNotice/{noticeId}")
- @ApiOperation(value = "下发放货通知")
- RESTfulResult sendDeliveryNotice(@PathVariable("noticeId") Integer noticeId) {
- return tmsshipFeign.sendDeliveryNotice(noticeId);
- }
- /**
- * 下拉框
- * @return
- */
- @GetMapping("getGroupId")
- @ApiOperation(value = "得到下拉")
- public RESTfulResult getGroupId(){
- return tmsshipFeign.getGroupId();
- }
- @GetMapping("getCargoId")
- @ApiOperation(value = "得到货物下拉")
- public RESTfulResult getCargoId(){
- return tmsshipFeign.getCargoId();
- }
- @GetMapping("insertBetchId")
- @ApiOperation(value = "得到批次下拉")
- public RESTfulResult insertBetchId(){
- return tmsshipFeign.insertBetchId();
- }
- @GetMapping("getAttorneyId")
- @ApiOperation(value = "得到提货下拉")
- public RESTfulResult getAttorneyId(){
- return tmsshipFeign.getAttorneyId();
- }
- @GetMapping("getNoticeId")
- @ApiOperation(value = "得到放货下拉")
- public RESTfulResult getNoticeId(){
- return tmsshipFeign.getNoticeId();
- }
- @GetMapping("getPortName")
- @ApiOperation(value = "得到货权转移单位")
- public RESTfulResult getPortName(){
- return tmsshipFeign.getPortName();
- }
- @GetMapping("getPortId")
- @ApiOperation(value = "得到港口下拉")
- public RESTfulResult getPortId(){
- return tmsshipFeign.getPortId();
- }
- @GetMapping("getRmRawId")
- @ApiOperation(value = "得到仓库下拉")
- public RESTfulResult getRmRawId(){
- return tmsshipFeign.getRmRawId();
- }
- @GetMapping("getPierId")
- @ApiOperation(value = "得到码头下拉")
- public RESTfulResult getPierId(){
- return tmsshipFeign.getPierId();
- }
- @GetMapping("getResultNumber")
- @ApiOperation(value = "得到实绩编号下拉")
- public RESTfulResult getResultNumber(){
- return tmsshipFeign.getResultNumber();
- }
- @GetMapping("getCarrier")
- @ApiOperation(value = "得到承运商下拉")
- public RESTfulResult getCarrier(){
- return tmsshipFeign.getCarrier();
- }
- @GetMapping("getShipperId")
- @ApiOperation(value = "得到托运方下拉")
- public RESTfulResult getShipperId(){
- return tmsshipFeign.getShipper();
- }
- @GetMapping("getOrderId")
- @ApiOperation(value = "得到装船指令下拉")
- public RESTfulResult getTask(){
- return tmsshipFeign.getTask();
- }
- @GetMapping("getCapacityId")
- @ApiOperation(value = "得到船下拉")
- public RESTfulResult getCapacityId(){
- return tmsshipFeign.getCapacityId();
- }
- /*======================================火运==========================================*/
- //************************************TmstrainLoadingResultController********************
- @ApiOperation(value="查询装车作业信息")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "apiId(58)", value = "表头", required = false, dataType = "Interger")
- })
- @PostMapping("/getTmstrainWagonLoad")
- public RESTfulResult getTmstrainWagonLoad(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize){
- return tmsTrainFeign.getTmstrainWagonLoad(mapValue == null?new HashMap<>():mapValue, apiId, pageNum, pageSize);
- }
- @ApiOperation(value="新增车皮装车作业实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "tmstrainLoadingResult", value = "车皮装车对象", required = false, dataType = "TmstrainLoadingResult")
- })
- @PostMapping(value = "/insertTmstrainLoadingResult")
- public RESTfulResult insertTmstrainLoadingResult(@RequestBody(required = false) Map<String, Object> map){
- return tmsTrainFeign.insertTmstrainLoadingResult(map);
- }
- @ApiOperation(value="通过主键查询车皮装车作业信息")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "resultId", value = "车皮装车主键", required = false, dataType = "BigDecimal")
- })
- @PostMapping(value = "/getTmstrainLoadingResultByResultId/{resultId}")
- public RESTfulResult getTmstrainLoadingResultByResultId(@PathVariable("resultId") BigDecimal resultId){
- return tmsTrainFeign.getTmstrainLoadingResultByResultId(resultId);
- }
- @ApiOperation(value="通过主键修改车皮装车作业实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "tmstrainLoadingResult", value = "修改车皮装车map", required = false, dataType = "TmstrainWagonLoadResult")
- })
- @PostMapping(value = "/upadteTmstrainLoadingResultByResultId")
- public RESTfulResult upadteTmstrainLoadingResultByResultId(@RequestBody(required = false) Map<String, Object> map) {
- return tmsTrainFeign.upadteTmstrainLoadingResultByResultId(map);
- }
- @ApiOperation(value="通过主键删除车皮装车作业实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "resultId", value = "主键ID", required = false, dataType = "BigDecimal")
- })
- @PostMapping(value = "/deleteTmstrainLoadingResultByResultId")
- public RESTfulResult deleteTmstrainLoadingResultByResultId(@RequestParam BigDecimal resultId){
- return tmsTrainFeign.deleteTmstrainLoadingResultByResultId(resultId);
- }
- //********************下拉框**********************
- @ApiOperation(value="获取发站地点名称")
- @ApiImplicitParams({
- })
- @GetMapping(value = "/getSendStationName")
- public RESTfulResult getSendStationName(){
- return tmsTrainFeign.getSendStationName();
- }
- @ApiOperation(value="获取到站地点名称")
- @GetMapping(value = "/getArrivalStationName")
- public RESTfulResult getArrivalStationName(){
- return tmsTrainFeign.getArrivalStationName();
- }
- @ApiOperation(value="获取批次ID")
- @GetMapping(value = "/getBatchId")
- public RESTfulResult getBatchId(){
- return tmsTrainFeign.getBatchId();
- }
- @ApiOperation(value="获取装车车皮号")
- @GetMapping(value = "/getWagonNo")
- public RESTfulResult getWagonNo(){
- return tmsTrainFeign.getWagonNo();
- }
- @ApiOperation(value="查询所有发运计划")
- @GetMapping(value = "/getRailPlan")
- public RESTfulResult getRailPlan(){
- return tmsTrainFeign.getRailPlan();
- }
- @GetMapping(value = "/getDilBatch")
- public RESTfulResult getDilBatch(){
- return tmsTruckFeign.getDilBatch();
- }
- @GetMapping(value = "/getCarrierId")
- public RESTfulResult getCarrierId(){
- return tmsTruckFeign.getCarrier();
- }
- @GetMapping(value = "/getLine")
- public RESTfulResult getLine(){
- return tmsTruckFeign.getLine();
- }
- @GetMapping(value = "/getWarehouse")
- public RESTfulResult getWarehouse(){
- return tmsTruckFeign.getWarehouse();
- }
- @GetMapping(value = "/getGatepost")
- public RESTfulResult getGatepost(){
- return tmsTruckFeign.getGatepost();
- }
- @GetMapping(value = "/getAPO")
- public RESTfulResult getAPO(){
- return tmsTruckFeign.getAPO();
- }
- @GetMapping(value = "/getFuCapacityId")
- public RESTfulResult getFuCapacityId(){
- return tmsTruckFeign.getFuCapacityId();
- }
- @GetMapping(value = "/getPort")
- public RESTfulResult getPort(){
- return tmsTruckFeign.getPort();
- }
- @ApiOperation(value="查询卸车作业信息")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "apiId(60)", value = "表头", required = false, dataType = "Interger")
- })
- @PostMapping("/getTmstrainWagonUnLoad")
- public RESTfulResult getTmstrainWagonUnLoad(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize){
- return tmsTrainFeign.getTmstrainWagonUnLoad(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize);
- }
- @ApiOperation(value="通过主键删除车皮卸车作业实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "unloadingId", value = "主键ID", required = false, dataType = "BigDecimal")
- })
- @PostMapping(value = "/deleteTmstrainWagonUnLoadResultByUnLoadingId")
- public RESTfulResult deleteTmstrainWagonUnLoadResultByUnLoadingId(@RequestParam BigDecimal unloadingId){
- return tmsTrainFeign.deleteTmstrainWagonUnLoadResultByUnLoadingId(unloadingId);
- }
- @ApiOperation(value="新增车皮卸车作业实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "tmstrainWagonUnloadResult", value = "车皮卸车对象", required = false, dataType = "TmstrainWagonUnloadResult")
- })
- @PostMapping(value = "/insertTmstrainWagonUnLoadResult")
- public RESTfulResult insertTmstrainWagonUnLoadResult(@RequestBody(required = false) Map<String, Object> tmstrainWagonUnloadResult){
- return tmsTrainFeign.insertTmstrainWagonUnLoadResult(tmstrainWagonUnloadResult);
- }
- @ApiOperation(value="通过主键修改车皮卸车作业实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "tmstrainWagonUnloadResult", value = "车皮卸车对象", required = false, dataType = "TmstrainWagonUnloadResult")
- })
- @PostMapping(value = "/upadteTmstrainWagonUnLoadResultByUnLoadingId")
- public RESTfulResult upadteTmstrainWagonUnLoadResultByUnLoadingId(@RequestBody(required = false) Map<String, Object> tmstrainWagonUnloadResult){
- return tmsTrainFeign.upadteTmstrainWagonUnLoadResultByUnLoadingId(tmstrainWagonUnloadResult);
- }
- @ApiOperation(value="查看火运实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "apiId(65)", value = "表头", required = false, dataType = "Interger")
- })
- @PostMapping("/getTmstrainresult")
- public RESTfulResult getTmstrainresult(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize){
- return tmsTrainFeign.getTmstrainresult(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize);
- }
- @ApiOperation(value="通过主键查询车皮卸车作业信息")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "unloadingId", value = "车皮卸车主键", required = false, dataType = "BigDecimal")
- })
- @PostMapping(value = "/getTmstrainWagonUnLoadResultByUnLoadingId/{unloadingId}")
- public RESTfulResult getTmstrainWagonUnLoadResultByUnLoadingId(@PathVariable("unloadingId") BigDecimal unloadingId) {
- return tmsTrainFeign.getTmstrainWagonUnLoadResultByUnLoadingId(unloadingId);
- }
- //下拉框
- @ApiOperation(value="获取卸车地点名称")
- @ApiImplicitParams({
- })
- @GetMapping(value = "/getUnloadingPointName")
- public RESTfulResult getUnloadingPointName(){
- return tmsTrainFeign.getUnloadingPointName();
- }
- @ApiOperation(value="获取卸车路径名称")
- @ApiImplicitParams({
- })
- @GetMapping(value = "/getUnloadingRouteName")
- public RESTfulResult getUnloadingRouteName(){
- return tmsTrainFeign.getUnloadingRouteName();
- }
- @ApiOperation(value="查询请车作业")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
- @ApiImplicitParam(name = "apiId(57)", value = "动态表头", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "status", value = "状态码", required = false, dataType = "Integer"),
- })
- @PostMapping("/getAllWagonPlease")
- public RESTfulResult getAllWagonPlease(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize,
- Integer status){
- return tmsTrainFeign.getAllWagonPlease(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize, status);
- }
- @ApiOperation(value="通过Id查询请车作业")
- @PostMapping ("/getWagonPleaseById/{resultId}")
- public RESTfulResult getWagonPleaseById(@PathVariable("resultId")Integer resultId){
- return tmsTrainFeign.getWagonPleaseById(resultId);
- }
- @ApiOperation(value="新增请车作业")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "amstrainWagonPlease", value = "请车作业对象", required = false, dataType = "AmstrainWagonPlease"),
- })
- @PostMapping("/addWagonPlease")
- public RESTfulResult addWagonPlease(@RequestBody(required = false) Map<String, Object> tmstrainPleaseApproveResult){
- return tmsTrainFeign.addWagonPlease(tmstrainPleaseApproveResult);
- }
- @ApiOperation(value="修改请车作业")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "tmstrainPleaseApproveResult", value = "请车作业实绩对象", required = false, dataType = "TmstrainPleaseApproveResult"),
- })
- @PostMapping("/updateWagonPlease")
- public RESTfulResult updateWagonPlease(@RequestBody(required = false) Map<String, Object> tmstrainPleaseApproveResult){
- return tmsTrainFeign.updateWagonPlease(tmstrainPleaseApproveResult);
- }
- @ApiOperation(value="逻辑删除请车作业 设置状态码为 3")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "tmstrainPleaseApproveResult", value = "请车作业实绩对象", required = false, dataType = "TmstrainPleaseApproveResult"),
- })
- @PostMapping("/deleteWagonPlease/{resultId}")
- public RESTfulResult deleteWagonPlease(@PathVariable("resultId") Integer resultId){
- return tmsTrainFeign.deleteWagonPlease(resultId);
- }
- @ApiOperation(value="下发请车作业 设置状态码为 1")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "resultId", value = "请车作业实绩对象", required = false, dataType = "Integer"),
- })
- @PostMapping("/sendWagonPlease/{resultId}")
- public RESTfulResult sendWagonPlease(@PathVariable("resultId") Integer resultId){
- return tmsTrainFeign.sendWagonPlease(resultId);
- }
- //下拉框
- @ApiOperation(value="查询所有发货单位")
- @GetMapping("/getShipper")
- public RESTfulResult getShipper(){
- return tmsTrainFeign.getShipper();
- }
- @ApiOperation(value="查询批车作业")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
- @ApiImplicitParam(name = "apiId(70)", value = "动态表头", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "status", value = "状态码", required = false, dataType = "Integer"),
- })
- @PostMapping("/getApproveAllWagonPlease")
- public RESTfulResult getApproveAllWagonPlease(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize){
- return tmsTrainFeign.getApproveAllWagonPlease(mapValue==null?new HashMap<>():mapValue, apiId, pageNum, pageSize);
- }
- @ApiOperation(value="通过Id查询批车作业")
- @PostMapping ("/getApproveWagonPleaseById/{resultId}")
- public RESTfulResult getApproveWagonPleaseById(@PathVariable("resultId")Integer resultId){
- return tmsTrainFeign.getApproveWagonPleaseById(resultId);
- }
- @ApiOperation(value="新增批车作业")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "tmstrainPleaseApproveResult", value = "请车作业实绩对象", required = false, dataType = "TmstrainPleaseApproveResult"),
- })
- @PostMapping("/addApproveWagonPlease")
- public RESTfulResult addApproveWagonPlease(@RequestBody(required = false) Map<String, Object> tmstrainPleaseApproveResult){
- return tmsTrainFeign.addApproveWagonPlease(tmstrainPleaseApproveResult);
- }
- @ApiOperation(value="修改批车作业")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "tmstrainPleaseApproveResult", value = "请车作业实绩对象", required = false, dataType = "TmstrainPleaseApproveResult"),
- })
- @PostMapping("/updateApproveWagonPlease")
- public RESTfulResult updateApproveWagonPlease(@RequestBody(required = false) Map<String, Object> tmstrainPleaseApproveResult){
- return tmsTrainFeign.updateApproveWagonPlease(tmstrainPleaseApproveResult);
- }
- @ApiOperation(value="逻辑删除批车作业")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "resultId", value = "请车作业实绩对象", required = false, dataType = "Integer"),
- })
- @PostMapping("/deleteApproveWagonPlease/{resultId}")
- public RESTfulResult deleteApproveWagonPlease(@PathVariable("resultId") Integer resultId){
- return tmsTrainFeign.deleteApproveWagonPlease(resultId);
- }
- /*======================================汽运==========================================*/
- //******************************************TmstruckLoadResultController***********************************
- @ApiOperation(value="查询所有装车实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
- @ApiImplicitParam(name = "apiId(91)", value = "动态表头", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
- })
- @PostMapping("/getAllLoadResult")
- public RESTfulResult getAllLoadResult(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize,
- Integer status ){
- return tmsTruckFeign.getAllLoadResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize, status);
- }
- @ApiOperation(value="新增汽车装车实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "", required = false, dataType = "Map"),
- })
- @PostMapping("/addLoadResult")
- public RESTfulResult addLoadResult(@RequestBody(required=false) Map<String,Object> mapValue){
- return tmsTruckFeign.addLoadResult(mapValue);
- }
- @ApiOperation(value="修改汽车装车实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "tmstruckLoadResult", value = "装车作业实绩对象", required = false, dataType = "TmstruckLoadResult"),
- })
- @PostMapping("/updateLoadResult")
- public RESTfulResult updateLoadResult(@RequestBody Map<String, Object> map){
- return tmsTruckFeign.updateLoadResult(map);
- }
- @ApiOperation(value="通过ID查询装车实绩 ")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "resultId", value = "装车作业实绩ID", required = false, dataType = "Integer"),
- })
- @PostMapping("/getLoadResultById/{resultId}")
- public RESTfulResult getLoadResultById(@PathVariable("resultId") Integer resultId){
- return tmsTruckFeign.getLoadResultById(resultId);
- }
- @ApiOperation(value="逻辑删除车装车实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "tmstruckLoadResult", value = "装车作业实绩对象", required = false, dataType = "TmstruckLoadResult"),
- })
- @PostMapping("/deleteLoadResult/{resultId}")
- public RESTfulResult deleteLoadResult(@PathVariable("resultId")Integer resultId){
- return tmsTruckFeign.deleteLoadResult(resultId);
- }
- //***************************************TmstruckEnfactoryResultController***************************
- @ApiOperation(value="查询所有的进厂实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
- @ApiImplicitParam(name = "apiId(99)", value = "动态表头", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "status", value = "状态码", required = false, dataType = "Integer"),
- })
- @PostMapping("/getAllEnFactoryResult")
- public RESTfulResult getAllEnFactoryResult(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize
- ){
- return tmsTruckFeign.getAllEnFactoryResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize);
- }
- @ApiOperation(value="通过采集系统传来的数据新增进厂作业实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "运输计划实绩对象", required = false, dataType = "Map"),
- })
- @PostMapping("/addEnFactoryResult")
- public RESTfulResult addEnFactoryResult(@RequestBody(required=false) Map<String,Object> mapValue){
- return tmsTruckFeign.addEnFactoryResult(mapValue);
- }
- @ApiOperation(value="PDA扫描更新进厂作业实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "运输计划实绩对象", required = false, dataType = "Map"),
- })
- @PostMapping("/updateEnactoryResult")
- public RESTfulResult updateEnactoryResult(@RequestBody(required=false) Map<String,Object> mapValue){
- return tmsTruckFeign.updateEnactoryResult(mapValue);
- }
- //***************************************TmstruckWeightResultController***************************
- @ApiOperation(value="查询计毛实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
- @ApiImplicitParam(name = "apiId(102)", value = "动态表头", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "status", value = "状态码", required = false, dataType = "Integer"),
- })
- @PostMapping("/getAllJiMaoResult")
- public RESTfulResult getAllJiMaoResult(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize){
- return tmsTruckFeign.getAllJiMaoResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize);
- }
- @ApiOperation(value="查询计皮实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
- @ApiImplicitParam(name = "apiId(104)", value = "动态表头", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "status", value = "状态码", required = false, dataType = "Integer"),
- })
- @PostMapping("/getAllJiPiResult")
- public RESTfulResult getAllJiPiResult(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize) {
- return tmsTruckFeign.getAllJiPiResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize);
- }
- @ApiOperation(value="采集新增计毛实绩 ")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "采集的数据", required = false, dataType = "Map"),
- })
- @PostMapping("/addJiMaoResult")
- public RESTfulResult addJiMaoResult(@RequestBody Map<String, Object> mapValue){
- return tmsTruckFeign.addJiMaoResult(mapValue);
- }
- @ApiOperation(value="采集新增计皮实绩 ")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "采集的数据", required = false, dataType = "Map"),
- })
- @PostMapping("/addJiPiResult")
- public RESTfulResult addJiPiResult(@RequestBody Map<String, Object> mapValue){
- return tmsTruckFeign.addJiPiResult(mapValue);
- }
- //****************************************TmstruckUnloadResultController*******************************
- @ApiOperation(value="查询卸货实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
- @ApiImplicitParam(name = "apiId(103)", value = "动态表头", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "status", value = "状态码", required = false, dataType = "Integer"),
- })
- @PostMapping("/getUnloadResult")
- public RESTfulResult getUnloadResult(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize
- ){
- return tmsTruckFeign.getUnloadResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize);
- }
- @ApiOperation(value="更新卸货实绩 实际上是更新实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "resultId", value = "装车作业实绩ID", required = false, dataType = "Integer"),
- })
- @PostMapping("/addUnloadResult")
- public RESTfulResult addUnloadResult(@RequestBody Map<String, Object> mapValue){
- return tmsTruckFeign.addUnloadResult(mapValue);
- }
- //****************************************TmstruckReceiptResultController*******************************
- @ApiOperation(value="查询收货实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
- @ApiImplicitParam(name = "apiId(107)", value = "动态表头", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "status", value = "状态码", required = false, dataType = "Integer"),
- })
- @PostMapping("/getReceiveResult")
- public RESTfulResult getReceiveResult(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize
- ){
- return tmsTruckFeign.getReceiveResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize);
- }
- //****************************************TmstruckLeaveFactoryResultController*******************************
- @ApiOperation(value="查询出厂实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
- @ApiImplicitParam(name = "apiId(110)", value = "动态表头", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "status", value = "状态码", required = false, dataType = "Integer"),
- })
- @PostMapping("/getLeaveFactoryResult")
- public RESTfulResult getLeaveFactoryResult(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize
- ){
- return tmsTruckFeign.getLeaveFactoryResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize);
- }
- @ApiOperation(value="PAD扫描汽车出厂实绩")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "", required = false, dataType = "Map"),
- })
- @PostMapping("/addLeaveFactoryResult")
- public RESTfulResult addLeaveFactoryResult(@RequestBody(required=false) Map<String,Object> mapValue){
- return tmsTruckFeign.addLeaveFactoryResult(mapValue);
- }
- //****************************************TmstruckMeasureCommissionController*******************************
- @ApiOperation(value="查询计量委托 ")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "resultId", value = "装车作业实绩ID", required = false, dataType = "Integer"),
- })
- @PostMapping("/getAllMeasureCommission/{type}")
- public RESTfulResult getAllMeasureCommission(@PathVariable("type") Integer type){
- return tmsTruckFeign.getAllMeasureCommission(type);
- }
- //****************************************TmstruckQualityResultController*******************************
- @ApiOperation(value="查询所有的质检作业")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
- @ApiImplicitParam(name = "apiId(111)", value = "动态表头", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "status", value = "状态码", required = false, dataType = "Integer"),
- })
- @PostMapping("/getQualityResult")
- public RESTfulResult getQualityResult(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize
- ){
- return tmsTruckFeign.getQualityResult(mapValue == null ? new HashMap<>() : mapValue, apiId, pageNum, pageSize);
- }
- @ApiOperation(value="通过ID获取质检实绩 ")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "resultId", value = "质检作业实绩ID", required = false, dataType = "Integer"),
- })
- @PostMapping("/getQualityResultById/{resultId}")
- public RESTfulResult getQualityResultById(@PathVariable("resultId") Integer resultId){
- return tmsTruckFeign.getQualityResultById(resultId);
- }
- @ApiOperation(value="修改质检实绩 ")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "resultId", value = "质检作业实绩ID", required = false, dataType = "Integer"),
- })
- @PostMapping("/updateQualityResult")
- public RESTfulResult updateQualityResult(@RequestBody(required=false) Map<String,Object> mapValue){
- return tmsTruckFeign.updateQualityResult(mapValue);
- }
- //*********************************内转物流tms-train*********************************************************************
- @PostMapping("/addTrainLoadResultForConverted")
- @ApiOperation(value = "内转物流新增装车")
- public Map<String,Object> addTrainLoadResultForConverted(Map<String,Object> tmstrainLoadingResult){
- Map<String,Object> resTfulResult = tmsTrainFeign.addTrainLoadResultForConverted(tmstrainLoadingResult);
- return resTfulResult;
- }
- @PostMapping("/selectLoadByResultId/{resultId}")
- @ApiOperation(value = "内转物流通过主键查询车皮装车作业信息")
- public Map<String,Object> selectLoadByResultId(@PathVariable("resultId") BigDecimal resultId){
- Map<String,Object> resTfulResult = tmsTrainFeign.selectLoadByResultId(resultId);
- return resTfulResult;
- }
- @ApiOperation(value="内转查询装车作业信息")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
- @ApiImplicitParam(name = "apiId(203)", value = "动态表头", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "status", value = "状态码", required = false, dataType = "Integer"),
- })
- @PostMapping("/getTmstrainWagonLoadForConverted")
- public Map<String,Object> getTmstrainWagonLoadForConverted(@RequestBody(required=false)
- Integer apiId,
- Integer pageNum,
- Integer pageSize
- ){
- return tmsTrainFeign.getTmstrainWagonLoadForConverted(apiId, pageNum, pageSize);
- }
- @PostMapping("/addWagonApprove")
- @ApiOperation(value = "内转物流新增装车")
- public Map<String,Object> addWagonApprove(Map<String,Object> tmstrainLoadingResult){
- Map<String,Object> resTfulResult = tmsTrainFeign.addWagonApprove(tmstrainLoadingResult);
- return resTfulResult;
- }
- @ApiOperation(value="内转查询请车作业信息")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
- @ApiImplicitParam(name = "apiId(199)", value = "动态表头", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "status", value = "状态码", required = false, dataType = "Integer"),
- })
- @PostMapping("/getAllWagonPleaseForConverted")
- public Map<String,Object> getAllWagonPleaseForConverted(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize,
- Integer status
- ){
- if(mapValue == null){
- mapValue = new HashMap<>();
- }
- mapValue.put("status", status);
- return tmsTrainFeign.getTmstrainWagonLoadForConverted(apiId, pageNum, pageSize);
- }
- @PostMapping("/getPleasePlanByResultId/{resultId}")
- @ApiOperation(value = "内转物流通过主键查请车计划")
- public Map<String,Object> getPleasePlanByResultId(@PathVariable("resultId") BigDecimal resultId){
- Map<String,Object> resTfulResult = tmsTrainFeign.getPleasePlanByResultId(resultId);
- return resTfulResult;
- }
- @PostMapping("/getApproveByResultId/{resultId}")
- @ApiOperation(value = "内转物流通过主键查询车皮请车作业信息")
- public Map<String,Object> getApproveByResultId(@PathVariable("resultId") BigDecimal resultId){
- Map<String,Object> resTfulResult = tmsTrainFeign.getApproveByResultId(resultId);
- return resTfulResult;
- }
- @ApiOperation(value="内转查询卸车作业信息")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
- @ApiImplicitParam(name = "apiId(201)", value = "动态表头", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
- })
- @PostMapping("/selectWagonUnLoadResultForConverted")
- public Map<String,Object> selectWagonUnLoadResultForConverted(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize
- ){
- return tmsTrainFeign.selectWagonUnLoadResultForConverted(apiId, pageNum, pageSize);
- }
- @ApiOperation(value="内转查询火车卸货信息")
- @ApiImplicitParams({
- @ApiImplicitParam(name = "mapValue", value = "表头和参数", required = false, dataType = "map"),
- @ApiImplicitParam(name = "apiId(202)", value = "动态表头", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageNum", value = "页码", required = false, dataType = "Integer"),
- @ApiImplicitParam(name = "pageSize", value = "页", required = false, dataType = "Integer"),
- })
- @PostMapping("/selectTrainUnLoadResultForConverted")
- public Map<String,Object> selectTrainUnLoadResultForConverted(@RequestBody(required=false) Map<String,Object> mapValue,
- Integer apiId,
- Integer pageNum,
- Integer pageSize
- ){
- return tmsTrainFeign.selectWagonUnLoadResultForConverted(apiId, pageNum, pageSize);
- }
- }
|