|
@@ -6,7 +6,6 @@ import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.ruoyi.common.annotation.Log;
|
|
|
import com.ruoyi.common.core.controller.BaseController;
|
|
|
-import com.ruoyi.common.core.domain.PageInfo;
|
|
|
import com.ruoyi.common.core.domain.R;
|
|
|
import com.ruoyi.common.enums.BusinessType;
|
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
@@ -41,16 +40,11 @@ public class BasicLibraryController extends BaseController {
|
|
|
@ApiOperation("查询基础库管理列表")
|
|
|
// @PreAuthorize("@ss.hasPermi('platform:base:list')")
|
|
|
@PostMapping("/list")
|
|
|
- public R<PageInfo<BasicLibrary>> list(@RequestBody BaseParam param) {
|
|
|
+ public R<IPage<BasicLibrary>> list(@RequestBody BaseParam param) {
|
|
|
IPage<BasicLibrary> basicLibraryIPage = basicLibraryService.page(new Page<BasicLibrary>().setCurrent(param.getCurrent()).setSize(param.getSize()),
|
|
|
new LambdaQueryWrapper<BasicLibrary>().like(param.getName()!=null,BasicLibrary::getName,param.getName())
|
|
|
.eq(BasicLibrary::getDelFlag,0));
|
|
|
- PageInfo<BasicLibrary> pageInfo = new PageInfo<>();
|
|
|
- pageInfo.setRecords(basicLibraryIPage.getRecords());
|
|
|
- pageInfo.setSize(basicLibraryIPage.getSize());
|
|
|
- pageInfo.setCurrent(basicLibraryIPage.getCurrent());
|
|
|
- pageInfo.setTotal(basicLibraryIPage.getTotal());
|
|
|
- return R.ok(pageInfo);
|
|
|
+ return R.ok(basicLibraryIPage);
|
|
|
}
|
|
|
|
|
|
|
|
@@ -85,21 +79,42 @@ public class BasicLibraryController extends BaseController {
|
|
|
@PostMapping("addOrUpdate")
|
|
|
public R<Boolean> add(@RequestBody BasicLibrary param) {
|
|
|
//参数校验
|
|
|
- String[] bootCode = param.getBootCode().split(",");
|
|
|
- if (bootCode.length != 2){
|
|
|
- return R.fail("引导码参数格式有误");
|
|
|
- }
|
|
|
- if (param.getBootCodeSend() < 0){
|
|
|
- return R.fail("引导码发送次数参数有误");
|
|
|
- }
|
|
|
- String[] dateCode = param.getDateCode().split(",");
|
|
|
- if (dateCode.length % 2 != 0){
|
|
|
- return R.fail("数据码参数有误");
|
|
|
- }
|
|
|
- String[] overCode = param.getOverCode().split(",");
|
|
|
- if (overCode.length != 2){
|
|
|
- return R.fail("结束码参数有误");
|
|
|
- }
|
|
|
+// String[] bootCode = param.getBootCode().split(",");
|
|
|
+// if (bootCode.length != 2){
|
|
|
+// return R.fail("引导码参数格式有误");
|
|
|
+// }
|
|
|
+// if (param.getBootCodeSend() < 0){
|
|
|
+// return R.fail("引导码发送次数参数有误");
|
|
|
+// }
|
|
|
+// String[] synchronizeCode = param.getSynchronizeCode().split(",");
|
|
|
+// if (synchronizeCode.length != 2){
|
|
|
+// return R.fail("同步码参数格式有误");
|
|
|
+// }
|
|
|
+// if (param.getSynchronizeCodeSend() < 0){
|
|
|
+// return R.fail("同步码发送次数参数有误");
|
|
|
+// }
|
|
|
+
|
|
|
+// String[] dateCode = param.getDateCode().split(",");
|
|
|
+// if (dateCode.length % 2 != 0){
|
|
|
+// return R.fail("数据码参数有误");
|
|
|
+// }
|
|
|
+// if (StringUtils.isEmpty(param.getDateCode())){
|
|
|
+// return R.fail("数据码参数不能为空");
|
|
|
+// }
|
|
|
+//
|
|
|
+// String[] dateBinary0 = param.getDateBinary0().split(",");
|
|
|
+// if (dateBinary0.length != 2){
|
|
|
+// return R.fail("数据码二进制0参数格式有误");
|
|
|
+// }
|
|
|
+// String[] dateBinary1 = param.getDateBinary1().split(",");
|
|
|
+// if (dateBinary1.length != 2){
|
|
|
+// return R.fail("数据码二进制1参数格式有误");
|
|
|
+// }
|
|
|
+//
|
|
|
+// String[] overCode = param.getOverCode().split(",");
|
|
|
+// if (overCode.length != 2){
|
|
|
+// return R.fail("结束码参数有误");
|
|
|
+// }
|
|
|
if (param.getId() != null) {
|
|
|
param.setUpdateTime(DateUtils.getNowDate());
|
|
|
}else {
|