首次提交
This commit is contained in:
parent
07010623a3
commit
62d8a1e21f
|
@ -25,8 +25,8 @@ public class MedicalSupplyBean extends StartTimeBean {
|
|||
@NotNull(message = "计算间隔时间不能为空")
|
||||
private Integer intervalTime;
|
||||
|
||||
private double medicinal;
|
||||
private double blood;
|
||||
private Double medicinal;
|
||||
private Double blood;
|
||||
//
|
||||
/**
|
||||
* 运送工具.
|
||||
|
|
|
@ -1,17 +1,30 @@
|
|||
package com.hshh.nation.mock.controller;
|
||||
|
||||
import com.hshh.nation.mock.bean.*;
|
||||
import com.hshh.nation.common.BaseController;
|
||||
import com.hshh.nation.common.OperateResult;
|
||||
import com.hshh.nation.mock.bean.FuelAirMockBean;
|
||||
import com.hshh.nation.mock.bean.FuelBoatMockBean;
|
||||
import com.hshh.nation.mock.bean.FuelReceiveMockBean;
|
||||
import com.hshh.nation.mock.bean.FuelSendMockBean;
|
||||
import com.hshh.nation.mock.bean.FuelTransMockBean;
|
||||
import com.hshh.nation.mock.bean.MedicalCasualtyBackToBean;
|
||||
import com.hshh.nation.mock.bean.MedicalSupplyBean;
|
||||
import com.hshh.nation.mock.bean.TransportAirMockBean;
|
||||
import com.hshh.nation.mock.bean.TransportLoadMockBean;
|
||||
import com.hshh.nation.mock.bean.TransportSeaBean;
|
||||
import com.hshh.nation.mock.bean.TransportUnloadMockBean;
|
||||
import com.hshh.nation.mock.service.AbtActionMockBase;
|
||||
import com.hshh.nation.mock.service.ActionMockService;
|
||||
import com.hshh.nation.mock.service.MockService;
|
||||
import com.hshh.nation.common.BaseController;
|
||||
import com.hshh.nation.common.OperateResult;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.validation.BindingResult;
|
||||
import org.springframework.web.bind.annotation.*;
|
||||
|
||||
import javax.annotation.Resource;
|
||||
import javax.validation.Valid;
|
||||
import lombok.extern.slf4j.Slf4j;
|
||||
import org.springframework.validation.BindingResult;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
|
||||
/**
|
||||
* 模拟控制
|
||||
|
@ -20,6 +33,7 @@ import javax.validation.Valid;
|
|||
@RequestMapping("/mock")
|
||||
@Slf4j
|
||||
public class ActionMockController extends BaseController {
|
||||
|
||||
//接收
|
||||
@Resource(name = "fuel-receive-mock")
|
||||
private ActionMockService mockService;
|
||||
|
@ -57,7 +71,8 @@ public class ActionMockController extends BaseController {
|
|||
//油料接收
|
||||
@PostMapping("/receive")
|
||||
@ResponseBody
|
||||
public OperateResult<String> receive(@Valid @RequestBody FuelReceiveMockBean input, BindingResult bindingResult) {
|
||||
public OperateResult<String> receive(@Valid @RequestBody FuelReceiveMockBean input,
|
||||
BindingResult bindingResult) {
|
||||
|
||||
if (bindingResult.hasErrors()) {
|
||||
return this.errorsInputHandle(bindingResult);
|
||||
|
@ -68,10 +83,12 @@ public class ActionMockController extends BaseController {
|
|||
}).start();
|
||||
return OperateResult.success();
|
||||
}
|
||||
|
||||
//油料发放
|
||||
@PostMapping("/send")
|
||||
@ResponseBody
|
||||
public OperateResult<String> send(@Valid @RequestBody FuelSendMockBean input, BindingResult bindingResult) {
|
||||
public OperateResult<String> send(@Valid @RequestBody FuelSendMockBean input,
|
||||
BindingResult bindingResult) {
|
||||
|
||||
if (bindingResult.hasErrors()) {
|
||||
return this.errorsInputHandle(bindingResult);
|
||||
|
@ -84,10 +101,12 @@ public class ActionMockController extends BaseController {
|
|||
|
||||
return OperateResult.success();
|
||||
}
|
||||
|
||||
//油料运输
|
||||
@PostMapping("/trans")
|
||||
@ResponseBody
|
||||
public OperateResult<String> trans(@Valid @RequestBody FuelTransMockBean input, BindingResult bindingResult) {
|
||||
public OperateResult<String> trans(@Valid @RequestBody FuelTransMockBean input,
|
||||
BindingResult bindingResult) {
|
||||
|
||||
if (bindingResult.hasErrors()) {
|
||||
return this.errorsInputHandle(bindingResult);
|
||||
|
@ -100,10 +119,12 @@ public class ActionMockController extends BaseController {
|
|||
|
||||
return OperateResult.success();
|
||||
}
|
||||
|
||||
//飞机油料补给
|
||||
@PostMapping("/plane")
|
||||
@ResponseBody
|
||||
public OperateResult<String> plane(@Valid @RequestBody FuelAirMockBean input, BindingResult bindingResult) {
|
||||
public OperateResult<String> plane(@Valid @RequestBody FuelAirMockBean input,
|
||||
BindingResult bindingResult) {
|
||||
|
||||
if (bindingResult.hasErrors()) {
|
||||
return this.errorsInputHandle(bindingResult);
|
||||
|
@ -116,10 +137,12 @@ public class ActionMockController extends BaseController {
|
|||
|
||||
return OperateResult.success();
|
||||
}
|
||||
|
||||
//舰船油料补给
|
||||
@PostMapping("/boat")
|
||||
@ResponseBody
|
||||
public OperateResult<String> boat(@Valid @RequestBody FuelBoatMockBean input, BindingResult bindingResult) {
|
||||
public OperateResult<String> boat(@Valid @RequestBody FuelBoatMockBean input,
|
||||
BindingResult bindingResult) {
|
||||
|
||||
if (bindingResult.hasErrors()) {
|
||||
return this.errorsInputHandle(bindingResult);
|
||||
|
@ -135,29 +158,36 @@ public class ActionMockController extends BaseController {
|
|||
//伤病员后送
|
||||
@PostMapping("/casualtyTakeBackTo")
|
||||
@ResponseBody
|
||||
public OperateResult<String> casualtyTakeBackTo(@Valid @RequestBody MedicalCasualtyBackToBean input, BindingResult bindingResult) {
|
||||
public OperateResult<String> casualtyTakeBackTo(
|
||||
@Valid @RequestBody MedicalCasualtyBackToBean input, BindingResult bindingResult) {
|
||||
if (bindingResult.hasErrors()) {
|
||||
return this.errorsInputHandle(bindingResult);
|
||||
}
|
||||
new Thread(() -> {medicalCasualtyMockService.mock(input,"casualtyTakeBackTo");}).start();
|
||||
new Thread(() -> {
|
||||
medicalCasualtyMockService.mock(input, "casualtyTakeBackTo");
|
||||
}).start();
|
||||
return OperateResult.success();
|
||||
}
|
||||
|
||||
//战地物资补给
|
||||
@PostMapping("/medicalSupply")
|
||||
@ResponseBody
|
||||
public OperateResult<String> medicalSupply(@Valid @RequestBody MedicalSupplyBean input, BindingResult bindingResult) {
|
||||
public OperateResult<String> medicalSupply(@Valid @RequestBody MedicalSupplyBean input,
|
||||
BindingResult bindingResult) {
|
||||
if (bindingResult.hasErrors()) {
|
||||
return this.errorsInputHandle(bindingResult);
|
||||
}
|
||||
new Thread(() -> {medicalSupplierMockService.mock(input,"medicalSupply");}).start();
|
||||
new Thread(() -> {
|
||||
medicalSupplierMockService.mock(input, "medicalSupply");
|
||||
}).start();
|
||||
return OperateResult.success();
|
||||
}
|
||||
|
||||
//装载
|
||||
@PostMapping("/load")
|
||||
@ResponseBody
|
||||
public OperateResult<String> load(@Valid @RequestBody TransportLoadMockBean input, BindingResult bindingResult) {
|
||||
public OperateResult<String> load(@Valid @RequestBody TransportLoadMockBean input,
|
||||
BindingResult bindingResult) {
|
||||
log.info("load::{}", input);
|
||||
if (bindingResult.hasErrors()) {
|
||||
return this.errorsInputHandle(bindingResult);
|
||||
|
@ -168,10 +198,12 @@ public class ActionMockController extends BaseController {
|
|||
|
||||
return OperateResult.success();
|
||||
}
|
||||
|
||||
//卸载
|
||||
@PostMapping("/unLoad")
|
||||
@ResponseBody
|
||||
public OperateResult<String> unLoad(@Valid @RequestBody TransportUnloadMockBean input, BindingResult bindingResult) {
|
||||
public OperateResult<String> unLoad(@Valid @RequestBody TransportUnloadMockBean input,
|
||||
BindingResult bindingResult) {
|
||||
log.info("unLoad::{}", input);
|
||||
if (bindingResult.hasErrors()) {
|
||||
return this.errorsInputHandle(bindingResult);
|
||||
|
@ -182,10 +214,12 @@ public class ActionMockController extends BaseController {
|
|||
|
||||
return OperateResult.success();
|
||||
}
|
||||
|
||||
//海上运输
|
||||
@PostMapping("/transportSea")
|
||||
@ResponseBody
|
||||
public OperateResult<String> transportSea(@Valid @RequestBody TransportSeaBean input, BindingResult bindingResult) {
|
||||
public OperateResult<String> transportSea(@Valid @RequestBody TransportSeaBean input,
|
||||
BindingResult bindingResult) {
|
||||
if (bindingResult.hasErrors()) {
|
||||
return this.errorsInputHandle(bindingResult);
|
||||
}
|
||||
|
@ -194,10 +228,12 @@ public class ActionMockController extends BaseController {
|
|||
}).start();
|
||||
return OperateResult.success();
|
||||
}
|
||||
|
||||
//空中运输
|
||||
@PostMapping("/transportPlane")
|
||||
@ResponseBody
|
||||
public OperateResult<String> transportAir(@Valid @RequestBody TransportAirMockBean input, BindingResult bindingResult) {
|
||||
public OperateResult<String> transportAir(@Valid @RequestBody TransportAirMockBean input,
|
||||
BindingResult bindingResult) {
|
||||
if (bindingResult.hasErrors()) {
|
||||
return this.errorsInputHandle(bindingResult);
|
||||
}
|
||||
|
@ -206,10 +242,12 @@ public class ActionMockController extends BaseController {
|
|||
}).start();
|
||||
return OperateResult.success();
|
||||
}
|
||||
|
||||
//伤病员后撤
|
||||
@PostMapping("/medicalCasualty")
|
||||
@ResponseBody
|
||||
public OperateResult<String> medicalCasualtyTake(@Valid @RequestBody MedicalCasualtyBackToBean input, BindingResult bindingResult) {
|
||||
public OperateResult<String> medicalCasualtyTake(
|
||||
@Valid @RequestBody MedicalCasualtyBackToBean input, BindingResult bindingResult) {
|
||||
if (bindingResult.hasErrors()) {
|
||||
return this.errorsInputHandle(bindingResult);
|
||||
}
|
||||
|
@ -218,10 +256,12 @@ public class ActionMockController extends BaseController {
|
|||
}).start();
|
||||
return OperateResult.success();
|
||||
}
|
||||
|
||||
//医疗物资补给
|
||||
@PostMapping("/medicalSupplies")
|
||||
@ResponseBody
|
||||
public OperateResult<String> medicalSupplies(@Valid @RequestBody MedicalSupplyBean input, BindingResult bindingResult) {
|
||||
public OperateResult<String> medicalSupplies(@Valid @RequestBody MedicalSupplyBean input,
|
||||
BindingResult bindingResult) {
|
||||
if (bindingResult.hasErrors()) {
|
||||
return this.errorsInputHandle(bindingResult);
|
||||
}
|
||||
|
|
|
@ -9,8 +9,8 @@ import com.hshh.nation.medical.service.MedicalArmyService;
|
|||
import com.hshh.nation.medical.service.MedicalHospitalService;
|
||||
import com.hshh.nation.medical.service.impl.MedicalBoatServiceImpl;
|
||||
import com.hshh.nation.medical.service.impl.MedicalPlaneServiceImpl;
|
||||
import com.hshh.nation.mock.bean.MedicalCasualtyBackToBean;
|
||||
import com.hshh.nation.mock.bean.MedicalSupplyBean;
|
||||
import com.hshh.nation.mock.bean.StartTimeBean;
|
||||
import com.hshh.nation.mock.service.AbtMockGeneralService;
|
||||
import com.hshh.nation.mock.service.MockService;
|
||||
import java.time.LocalDateTime;
|
||||
|
@ -48,7 +48,7 @@ public class MedicalSupplierMockServiceImpl extends AbtMockGeneralService implem
|
|||
|
||||
LocalDateTime endTime = handling(input, count, now, "casualty");
|
||||
|
||||
finished("", endTime, (MedicalCasualtyBackToBean) input, count, now);
|
||||
finished("", endTime, (StartTimeBean) input, count, now);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -57,6 +57,16 @@ public class MedicalSupplierMockServiceImpl extends AbtMockGeneralService implem
|
|||
String transportInfo = bean.getTransport();
|
||||
String[] transports = transportInfo.split("\\|");
|
||||
Integer id = Integer.parseInt(transports[0]);
|
||||
//验证是否有药材
|
||||
if (bean.getMedicinal() == null) {
|
||||
sendMessage(bean.getStartTime(), validate_label, "必须设置药材", counter, now, 1);
|
||||
return true;
|
||||
}
|
||||
//验证是否有血液
|
||||
if (bean.getBlood() == null) {
|
||||
sendMessage(bean.getStartTime(), validate_label, "必须设置血液", counter, now, 1);
|
||||
return true;
|
||||
}
|
||||
if (transports[1].equalsIgnoreCase("boat")) {
|
||||
MedicalBoatServiceImpl boatService = SpringContextHolder.getBean(
|
||||
MedicalBoatServiceImpl.class);
|
||||
|
@ -108,7 +118,7 @@ public class MedicalSupplierMockServiceImpl extends AbtMockGeneralService implem
|
|||
bean.getToLocation(),
|
||||
bean.getTransSpeed(),
|
||||
bean.getIntervalTime(),
|
||||
""
|
||||
"药材" + bean.getMedicinal() + ",血液" + bean.getBlood()
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -428,7 +428,7 @@
|
|||
<div class="mb-3 row">
|
||||
<label class="col-3 col-form-label ">备注</label>
|
||||
<div class="col">
|
||||
<textarea class="form-control" data-bs-toggle="autosize"
|
||||
<textarea class="form-control" data-bs-toggle="autosize" name="equipMeno" id="equipMeno"
|
||||
placeholder="Type something…"
|
||||
style="overflow: hidden; overflow-wrap: break-word; resize: none; text-align: start; height: 56px;"></textarea>
|
||||
</div>
|
||||
|
|
|
@ -421,7 +421,7 @@
|
|||
<div class="mb-3 row">
|
||||
<label class="col-3 col-form-label ">备注</label>
|
||||
<div class="col">
|
||||
<textarea class="form-control" data-bs-toggle="autosize"
|
||||
<textarea class="form-control" data-bs-toggle="autosize" name="portMeno" id="portMeno"
|
||||
placeholder="Type something…"
|
||||
style="overflow: hidden; overflow-wrap: break-word; resize: none; text-align: start; height: 56px;"></textarea>
|
||||
</div>
|
||||
|
|
|
@ -444,7 +444,7 @@
|
|||
<div class="mb-3 row">
|
||||
<label class="col-3 col-form-label ">备注</label>
|
||||
<div class="col">
|
||||
<textarea class="form-control" data-bs-toggle="autosize"
|
||||
<textarea class="form-control" data-bs-toggle="autosize" id="jarMeno" name="jarMeno"
|
||||
placeholder="Type something…"
|
||||
style="overflow: hidden; overflow-wrap: break-word; resize: none; text-align: start; height: 56px;"></textarea>
|
||||
</div>
|
||||
|
|
|
@ -501,7 +501,7 @@
|
|||
<div class="mb-3 row">
|
||||
<label class="col-3 col-form-label ">备注</label>
|
||||
<div class="col">
|
||||
<textarea class="form-control" data-bs-toggle="autosize"
|
||||
<textarea class="form-control" data-bs-toggle="autosize" name="equipMeno" id="equipMeno"
|
||||
placeholder="Type something…"
|
||||
style="overflow: hidden; overflow-wrap: break-word; resize: none; text-align: start; height: 56px;"></textarea>
|
||||
</div>
|
||||
|
|
|
@ -512,7 +512,7 @@
|
|||
|
||||
function setMedicalResourceLocation(obj) {
|
||||
if(document.getElementById("fromLocation")){}
|
||||
document.getElementById("fromLocation").value = obj.attributes["location"];
|
||||
document.getElementById("fromLocation").value = obj.attributes["location"].value;
|
||||
}
|
||||
document.addEventListener("DOMContentLoaded", function () {
|
||||
var fuelDiv = document.getElementById("from_secure_depart_dialog");
|
||||
|
|
BIN
target/classes/com/hshh/DefenceApplication.class
Normal file
BIN
target/classes/com/hshh/DefenceApplication.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/Global.class
Normal file
BIN
target/classes/com/hshh/Global.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/Init.class
Normal file
BIN
target/classes/com/hshh/Init.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/Test.class
Normal file
BIN
target/classes/com/hshh/Test.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/hshh/nation/code/entity/CodeDict.class
Normal file
BIN
target/classes/com/hshh/nation/code/entity/CodeDict.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/code/entity/CodeOption.class
Normal file
BIN
target/classes/com/hshh/nation/code/entity/CodeOption.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/code/mapper/CodeDictMapper.class
Normal file
BIN
target/classes/com/hshh/nation/code/mapper/CodeDictMapper.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/hshh/nation/common/BaseBean.class
Normal file
BIN
target/classes/com/hshh/nation/common/BaseBean.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/common/BaseController.class
Normal file
BIN
target/classes/com/hshh/nation/common/BaseController.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/common/ErrorField.class
Normal file
BIN
target/classes/com/hshh/nation/common/ErrorField.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/common/GeoCalculator$Result.class
Normal file
BIN
target/classes/com/hshh/nation/common/GeoCalculator$Result.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/common/GeoCalculator.class
Normal file
BIN
target/classes/com/hshh/nation/common/GeoCalculator.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/hshh/nation/common/MockMessageTip.class
Normal file
BIN
target/classes/com/hshh/nation/common/MockMessageTip.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/common/OperateResult.class
Normal file
BIN
target/classes/com/hshh/nation/common/OperateResult.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/common/SpringContextHolder.class
Normal file
BIN
target/classes/com/hshh/nation/common/SpringContextHolder.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/common/TableRowsResult.class
Normal file
BIN
target/classes/com/hshh/nation/common/TableRowsResult.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/common/Utility.class
Normal file
BIN
target/classes/com/hshh/nation/common/Utility.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/config/SecurityConfig.class
Normal file
BIN
target/classes/com/hshh/nation/config/SecurityConfig.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/enums/ResourceEnum.class
Normal file
BIN
target/classes/com/hshh/nation/enums/ResourceEnum.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/exception/Exceptions.class
Normal file
BIN
target/classes/com/hshh/nation/exception/Exceptions.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/file/entity/File.class
Normal file
BIN
target/classes/com/hshh/nation/file/entity/File.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/file/mapper/FileMapper.class
Normal file
BIN
target/classes/com/hshh/nation/file/mapper/FileMapper.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/file/service/FileService.class
Normal file
BIN
target/classes/com/hshh/nation/file/service/FileService.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/hshh/nation/fuel/bean/EquipResource.class
Normal file
BIN
target/classes/com/hshh/nation/fuel/bean/EquipResource.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/hshh/nation/fuel/bean/OrganizeResource.class
Normal file
BIN
target/classes/com/hshh/nation/fuel/bean/OrganizeResource.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/hshh/nation/fuel/entity/FuelArmy.class
Normal file
BIN
target/classes/com/hshh/nation/fuel/entity/FuelArmy.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/fuel/entity/FuelBaseStrong.class
Normal file
BIN
target/classes/com/hshh/nation/fuel/entity/FuelBaseStrong.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/fuel/entity/FuelBoat.class
Normal file
BIN
target/classes/com/hshh/nation/fuel/entity/FuelBoat.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/fuel/entity/FuelMetalJar.class
Normal file
BIN
target/classes/com/hshh/nation/fuel/entity/FuelMetalJar.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/fuel/entity/FuelPlane.class
Normal file
BIN
target/classes/com/hshh/nation/fuel/entity/FuelPlane.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/fuel/entity/FuelSoftJar.class
Normal file
BIN
target/classes/com/hshh/nation/fuel/entity/FuelSoftJar.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/fuel/entity/FuelTruck.class
Normal file
BIN
target/classes/com/hshh/nation/fuel/entity/FuelTruck.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/fuel/mapper/FuelArmyMapper.class
Normal file
BIN
target/classes/com/hshh/nation/fuel/mapper/FuelArmyMapper.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/hshh/nation/fuel/mapper/FuelBoatMapper.class
Normal file
BIN
target/classes/com/hshh/nation/fuel/mapper/FuelBoatMapper.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/hshh/nation/fuel/mapper/FuelPlaneMapper.class
Normal file
BIN
target/classes/com/hshh/nation/fuel/mapper/FuelPlaneMapper.class
Normal file
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/hshh/nation/fuel/mapper/FuelTruckMapper.class
Normal file
BIN
target/classes/com/hshh/nation/fuel/mapper/FuelTruckMapper.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/hshh/nation/medical/entity/MedicalArmy.class
Normal file
BIN
target/classes/com/hshh/nation/medical/entity/MedicalArmy.class
Normal file
Binary file not shown.
BIN
target/classes/com/hshh/nation/medical/entity/MedicalBoat.class
Normal file
BIN
target/classes/com/hshh/nation/medical/entity/MedicalBoat.class
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
target/classes/com/hshh/nation/medical/entity/MedicalPlane.class
Normal file
BIN
target/classes/com/hshh/nation/medical/entity/MedicalPlane.class
Normal file
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user