diff --git a/src/main/java/com/glxp/udi/admin/controller/auth/AuthAdminController.java b/src/main/java/com/glxp/udi/admin/controller/auth/AuthAdminController.java index 7ca2367..94ac32e 100644 --- a/src/main/java/com/glxp/udi/admin/controller/auth/AuthAdminController.java +++ b/src/main/java/com/glxp/udi/admin/controller/auth/AuthAdminController.java @@ -134,7 +134,7 @@ public class AuthAdminController { AuthAdmin authAdmin = authAdminService.getCurrentUser(); List authRoles = authRoleAdminService.listAdminRole(authAdmin.getId()); List authRoleList; - Page pageResult = new Page<>(); + IPage pageResult = new Page<>(); if (authRoles != null && authRoles.size() > 0) { int status = authRoles.get(0).getIsCustomer(); pageResult = authRoleService.listCustomerRoles(page, limit, status); @@ -158,7 +158,7 @@ public class AuthAdminController { @GetMapping("/admin/auth/admin/customerRoles") public BaseResponse customerRoles(@RequestParam(value = "page", defaultValue = "1") Integer page, @RequestParam(value = "limit", defaultValue = "100") Integer limit) { - Page authRolePage = authRoleService.listCustomerRoles(page, limit, 1); + IPage authRolePage = authRoleService.listCustomerRoles(page, limit, 1); PageSimpleResponse pageSimpleResponse = new PageSimpleResponse<>(); pageSimpleResponse.setTotal(authRolePage.getTotal()); List authAdminRoleResponses = authRolePage.getRecords().stream().map(e -> { @@ -333,7 +333,7 @@ public class AuthAdminController { return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL); } Integer isCustomer = authRoleAdminService.getIsCustomer(authAdminQueryRequest.getAdminId()); - Page authRolePage = authRoleService.listCustomerRoles(authAdminQueryRequest.getPage(), authAdminQueryRequest.getLimit(), isCustomer); + IPage authRolePage = authRoleService.listCustomerRoles(authAdminQueryRequest.getPage(), authAdminQueryRequest.getLimit(), isCustomer); PageSimpleResponse pageSimpleResponse = new PageSimpleResponse<>(); pageSimpleResponse.setTotal(authRolePage.getTotal()); List authAdminRoleResponses = authRolePage.getRecords().stream().map(e -> { @@ -355,7 +355,7 @@ public class AuthAdminController { @AuthRuleAnnotation("") @GetMapping("/auth/admin/admin/getAdminRoles") public BaseResponse getAdminRoles(AuthAdminQueryRequest authAdminQueryRequest) { - Page authRolePage = authRoleService.listCustomerRoles(authAdminQueryRequest.getPage(), authAdminQueryRequest.getLimit(), 0); + IPage authRolePage = authRoleService.listCustomerRoles(authAdminQueryRequest.getPage(), authAdminQueryRequest.getLimit(), 0); PageSimpleResponse pageSimpleResponse = new PageSimpleResponse<>(); pageSimpleResponse.setTotal(authRolePage.getTotal()); List authAdminRoleResponses = authRolePage.getRecords().stream().map(e -> { diff --git a/src/main/java/com/glxp/udi/admin/controller/inout/StockQRCodeTextController.java b/src/main/java/com/glxp/udi/admin/controller/inout/StockQRCodeTextController.java index e5c2a2d..a5ef8c2 100644 --- a/src/main/java/com/glxp/udi/admin/controller/inout/StockQRCodeTextController.java +++ b/src/main/java/com/glxp/udi/admin/controller/inout/StockQRCodeTextController.java @@ -278,7 +278,7 @@ public class StockQRCodeTextController { if (bindingResult.hasErrors()) { return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage()); } - Page page = stockPrintTempService.filterStockPrintTempEntity(filterStPrintTempRequest); + IPage page = stockPrintTempService.filterStockPrintTempEntity(filterStPrintTempRequest); PageSimpleResponse pageSimpleResponse = new PageSimpleResponse<>(); pageSimpleResponse.setTotal(page.getTotal()); pageSimpleResponse.setList(page.getRecords()); diff --git a/src/main/java/com/glxp/udi/admin/controller/inout/UnitMaintainController.java b/src/main/java/com/glxp/udi/admin/controller/inout/UnitMaintainController.java index 978cae3..4b5be16 100644 --- a/src/main/java/com/glxp/udi/admin/controller/inout/UnitMaintainController.java +++ b/src/main/java/com/glxp/udi/admin/controller/inout/UnitMaintainController.java @@ -1,7 +1,6 @@ package com.glxp.udi.admin.controller.inout; import com.baomidou.mybatisplus.core.metadata.IPage; -import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.glxp.udi.admin.annotation.AuthRuleAnnotation; import com.glxp.udi.admin.common.res.BaseResponse; import com.glxp.udi.admin.entity.inout.UnitMaintainEntity; @@ -61,7 +60,7 @@ public class UnitMaintainController { return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage()); } unitMaintainFilterRequest.setCustomerId(authAdminService.getCurrentUserCustomerId()); - Page page = unitMaintainService.getUnbindUnitMaintain(unitMaintainFilterRequest); + IPage page = unitMaintainService.getUnbindUnitMaintain(unitMaintainFilterRequest); PageSimpleResponse pageSimpleResponse = new PageSimpleResponse<>(); pageSimpleResponse.setTotal(page.getTotal()); diff --git a/src/main/java/com/glxp/udi/admin/dao/auth/AuthRoleDao.java b/src/main/java/com/glxp/udi/admin/dao/auth/AuthRoleDao.java index c4e1572..f1cd149 100644 --- a/src/main/java/com/glxp/udi/admin/dao/auth/AuthRoleDao.java +++ b/src/main/java/com/glxp/udi/admin/dao/auth/AuthRoleDao.java @@ -1,6 +1,7 @@ package com.glxp.udi.admin.dao.auth; import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.glxp.udi.admin.entity.auth.AuthRole; import com.glxp.udi.admin.req.auth.AuthRoleQueryRequest; @@ -26,7 +27,7 @@ public interface AuthRoleDao extends BaseMapper { */ Page listAuthAdminRolePage(Page page, @Param("status") Integer status); - Page listCustomerRoles(Page page, Integer isCustomer); + IPage listCustomerRoles(IPage page, @Param("isCustomer") Integer isCustomer); List listAuthRoles2(); diff --git a/src/main/java/com/glxp/udi/admin/dao/auth/CustomerContacDao.java b/src/main/java/com/glxp/udi/admin/dao/auth/CustomerContacDao.java index 0e9547c..ae57cac 100644 --- a/src/main/java/com/glxp/udi/admin/dao/auth/CustomerContacDao.java +++ b/src/main/java/com/glxp/udi/admin/dao/auth/CustomerContacDao.java @@ -1,16 +1,12 @@ package com.glxp.udi.admin.dao.auth; import com.baomidou.mybatisplus.core.mapper.BaseMapper; -import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.glxp.udi.admin.entity.auth.CustomerContactEntity; -import com.glxp.udi.admin.req.auth.CustomerContactFilterRequest; import org.apache.ibatis.annotations.Mapper; @Mapper public interface CustomerContacDao extends BaseMapper { - Page filterCustomerContact(Page page, CustomerContactFilterRequest userResisterFilterRequest); - boolean insertCustomerContact(CustomerContactEntity customerContactEntity); boolean updateCustomerContact(CustomerContactEntity customerContactEntity); diff --git a/src/main/java/com/glxp/udi/admin/dao/auth/CustomerInfoDao.java b/src/main/java/com/glxp/udi/admin/dao/auth/CustomerInfoDao.java index 26cdd15..00df7c7 100644 --- a/src/main/java/com/glxp/udi/admin/dao/auth/CustomerInfoDao.java +++ b/src/main/java/com/glxp/udi/admin/dao/auth/CustomerInfoDao.java @@ -28,5 +28,5 @@ public interface CustomerInfoDao extends BaseMapper { */ List selectCustomerIdByCustomerName(@Param("customerName") String customerName); - IPage filterDetailCustomerInfo(IPage page, String key, String customerName, String companyName, Integer userFlag, Integer bussinessStatus); + IPage filterDetailCustomerInfo(@Param("page") IPage page, @Param("key") String key, @Param("customerName") String customerName, @Param("companyName") String companyName, @Param("userFlag") Integer userFlag, @Param("bussinessStatus") Integer bussinessStatus); } diff --git a/src/main/java/com/glxp/udi/admin/dao/auth/UserRegisterDao.java b/src/main/java/com/glxp/udi/admin/dao/auth/UserRegisterDao.java index 8eb01d8..189136a 100644 --- a/src/main/java/com/glxp/udi/admin/dao/auth/UserRegisterDao.java +++ b/src/main/java/com/glxp/udi/admin/dao/auth/UserRegisterDao.java @@ -17,5 +17,4 @@ public interface UserRegisterDao extends BaseMapper { boolean deleteByCustomerId(Long id); - String isExit(String phoneNum); } diff --git a/src/main/java/com/glxp/udi/admin/dao/basic/BussinessTypeDao.java b/src/main/java/com/glxp/udi/admin/dao/basic/BussinessTypeDao.java index 09ba46d..244b57d 100644 --- a/src/main/java/com/glxp/udi/admin/dao/basic/BussinessTypeDao.java +++ b/src/main/java/com/glxp/udi/admin/dao/basic/BussinessTypeDao.java @@ -12,7 +12,7 @@ import java.util.List; @Mapper public interface BussinessTypeDao extends BaseMapper { - IPage filterAllByUser(IPage page, String name, String action, String mainAction, String locInvCode, String customerId, Boolean enabled); + IPage filterAllByUser(@Param("page") IPage page, @Param("name") String name, @Param("action") String action, @Param("mainAction") String mainAction, @Param("locInvCode") String locInvCode, @Param("customerId") String customerId, @Param("enabled") Boolean enabled); List filterAllByUserList(BussinessTypeFilterRequest bussinessTypeFilterRequest); diff --git a/src/main/java/com/glxp/udi/admin/dao/info/CompanyDao.java b/src/main/java/com/glxp/udi/admin/dao/info/CompanyDao.java index 173bace..463fc2b 100644 --- a/src/main/java/com/glxp/udi/admin/dao/info/CompanyDao.java +++ b/src/main/java/com/glxp/udi/admin/dao/info/CompanyDao.java @@ -1,8 +1,6 @@ package com.glxp.udi.admin.dao.info; import com.baomidou.mybatisplus.core.mapper.BaseMapper; -import com.baomidou.mybatisplus.extension.plugins.pagination.Page; -import com.glxp.udi.admin.entity.info.AliKeyEntity; import com.glxp.udi.admin.entity.info.CompanyEntity; import com.glxp.udi.admin.req.info.FilterCompanyRequest; import org.apache.ibatis.annotations.Mapper; @@ -18,8 +16,6 @@ public interface CompanyDao extends BaseMapper { CompanyEntity findCompanyByName(String companyName); - Page getSubCompany(Page page, FilterCompanyRequest companyRequest); - List filterCompany(FilterCompanyRequest companyRequest); boolean modifyCompany(CompanyEntity companyEntity); @@ -28,7 +24,5 @@ public interface CompanyDao extends BaseMapper { boolean deleteCompany(Long customerId); - AliKeyEntity findKey(String customerId); - String findCompanyName(@Param("customerId") long customerId); } diff --git a/src/main/java/com/glxp/udi/admin/dao/inout/StockQRCodeTextDao.java b/src/main/java/com/glxp/udi/admin/dao/inout/StockQRCodeTextDao.java index c2cbcb8..4617ba1 100644 --- a/src/main/java/com/glxp/udi/admin/dao/inout/StockQRCodeTextDao.java +++ b/src/main/java/com/glxp/udi/admin/dao/inout/StockQRCodeTextDao.java @@ -15,7 +15,7 @@ public interface StockQRCodeTextDao extends BaseMapper { boolean insertStockQRCodeText(StockQRCodeTextEntity stockQRCodeTextEntity); - boolean insertStockQRCodeTexts(@Param("StockQRCodeTextEntities") List StockQRCodeTextEntitys); + boolean insertStockQRCodeTexts(@Param("stockQRCodeTextEntities") List stockQRCodeTextEntities); boolean deleteByOrderId(@Param("id") String id); diff --git a/src/main/java/com/glxp/udi/admin/dao/inout/UdiRelevanceDao.java b/src/main/java/com/glxp/udi/admin/dao/inout/UdiRelevanceDao.java index 8b52083..8b80e25 100644 --- a/src/main/java/com/glxp/udi/admin/dao/inout/UdiRelevanceDao.java +++ b/src/main/java/com/glxp/udi/admin/dao/inout/UdiRelevanceDao.java @@ -1,6 +1,7 @@ package com.glxp.udi.admin.dao.inout; import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.glxp.udi.admin.entity.inout.UdiRelevanceEntity; import com.glxp.udi.admin.req.inout.FilterUdiInfoRequest; @@ -13,7 +14,18 @@ import java.util.List; @Mapper public interface UdiRelevanceDao extends BaseMapper { - Page filterUdiRelevance(Page page, FilterUdiInfoRequest filterUdiInfoRequest); + /** + * 关联查询UDI信息 + * + * @param page 分页参数 + * @param ylqxzcrbarmc 医疗器械注册备案人名称 + * @param cpmctymc 产品通用名称 + * @param nameCode DI标识 + * @param thirdId 第三方系统ID + * @param uuid uuid + * @return + */ + Page filterUdiRelevance(@Param("page") IPage page, @Param("ylqxzcrbarmc") String ylqxzcrbarmc, @Param("cpmctymc") String cpmctymc, @Param("nameCode") String nameCode, @Param("thirdId") String thirdId, @Param("uuid") String uuid); List filterUdiGp(FilterUdiInfoRequest filterUdiInfoRequest); diff --git a/src/main/java/com/glxp/udi/admin/dao/inout/UnitMaintainDao.java b/src/main/java/com/glxp/udi/admin/dao/inout/UnitMaintainDao.java index 085315b..6012252 100644 --- a/src/main/java/com/glxp/udi/admin/dao/inout/UnitMaintainDao.java +++ b/src/main/java/com/glxp/udi/admin/dao/inout/UnitMaintainDao.java @@ -2,7 +2,6 @@ package com.glxp.udi.admin.dao.inout; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.core.metadata.IPage; -import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.glxp.udi.admin.entity.inout.UnitMaintainEntity; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; @@ -27,11 +26,12 @@ public interface UnitMaintainDao extends BaseMapper { /** * 查询未绑定的往来单位 + * * @param page * @param customerId * @return */ - Page getUnbindUnitMaintain(Page page, String customerId); + IPage getUnbindUnitMaintain(IPage page, @Param("customerId") String customerId); /** * 根据单位ID查询往来单位信息 @@ -74,5 +74,5 @@ public interface UnitMaintainDao extends BaseMapper { */ int countByName(@Param("name") String name, @Param("customerId") String customerId); - IPage filterList(IPage page, String key, String customerId, Integer corpType); + IPage filterList(@Param("page") IPage page, @Param("key") String key, @Param("customerId") String customerId, @Param("corpType") Integer corpType); } diff --git a/src/main/java/com/glxp/udi/admin/dao/inventory/InvWarehouseDao.java b/src/main/java/com/glxp/udi/admin/dao/inventory/InvWarehouseDao.java index 0e3280c..6244554 100644 --- a/src/main/java/com/glxp/udi/admin/dao/inventory/InvWarehouseDao.java +++ b/src/main/java/com/glxp/udi/admin/dao/inventory/InvWarehouseDao.java @@ -1,7 +1,6 @@ package com.glxp.udi.admin.dao.inventory; import com.baomidou.mybatisplus.core.mapper.BaseMapper; -import com.baomidou.mybatisplus.core.metadata.IPage; import com.glxp.udi.admin.entity.inventory.InvWarehouseEntity; import com.glxp.udi.admin.req.inventory.FilterInvWarehouseRequest; import org.apache.ibatis.annotations.Mapper; @@ -12,8 +11,6 @@ import java.util.List; @Mapper public interface InvWarehouseDao extends BaseMapper { - IPage filterInvWarehouse(@Param("page") IPage page, @Param("request") FilterInvWarehouseRequest request); - List filterAllByUser(FilterInvWarehouseRequest filterInvWarehouseRequest); InvWarehouseEntity selectMaxCode(FilterInvWarehouseRequest filterInvWarehouseRequest); diff --git a/src/main/java/com/glxp/udi/admin/dao/inventory/StockPrintTempDao.java b/src/main/java/com/glxp/udi/admin/dao/inventory/StockPrintTempDao.java index 3bbcc38..bf733f7 100644 --- a/src/main/java/com/glxp/udi/admin/dao/inventory/StockPrintTempDao.java +++ b/src/main/java/com/glxp/udi/admin/dao/inventory/StockPrintTempDao.java @@ -1,17 +1,13 @@ package com.glxp.udi.admin.dao.inventory; import com.baomidou.mybatisplus.core.mapper.BaseMapper; -import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.glxp.udi.admin.entity.inventory.StockPrintTempEntity; import com.glxp.udi.admin.req.inventory.DeleteStPrintTempRequest; -import com.glxp.udi.admin.req.inventory.FilterStPrintTempRequest; import org.apache.ibatis.annotations.Mapper; @Mapper public interface StockPrintTempDao extends BaseMapper { - Page filterStockPrintTempEntity(Page page, FilterStPrintTempRequest filterStockprintRequest); - boolean delete(DeleteStPrintTempRequest deleteStPrintTempRequest); boolean insertStockPrintTempEntity(StockPrintTempEntity stockPrintEntity); diff --git a/src/main/java/com/glxp/udi/admin/dao/param/SystemPDFModuleDao.java b/src/main/java/com/glxp/udi/admin/dao/param/SystemPDFModuleDao.java index 70ad6ce..aab38d7 100644 --- a/src/main/java/com/glxp/udi/admin/dao/param/SystemPDFModuleDao.java +++ b/src/main/java/com/glxp/udi/admin/dao/param/SystemPDFModuleDao.java @@ -3,15 +3,12 @@ package com.glxp.udi.admin.dao.param; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.glxp.udi.admin.entity.param.SystemPDFModuleEntity; -import com.glxp.udi.admin.req.param.SystemPDFModuleRequest; import com.glxp.udi.admin.req.param.SystemPDFModuleSaveRequest; import org.apache.ibatis.annotations.Mapper; @Mapper public interface SystemPDFModuleDao extends BaseMapper { - Page queryPage(Page page, SystemPDFModuleRequest systemPDFModuleRequest); - Page listPDFModules(Page page); boolean updateById(SystemPDFModuleSaveRequest systemPDFModuleSaveRequest); diff --git a/src/main/java/com/glxp/udi/admin/service/auth/AuthRoleService.java b/src/main/java/com/glxp/udi/admin/service/auth/AuthRoleService.java index 8f78682..01bf02d 100644 --- a/src/main/java/com/glxp/udi/admin/service/auth/AuthRoleService.java +++ b/src/main/java/com/glxp/udi/admin/service/auth/AuthRoleService.java @@ -90,11 +90,11 @@ public class AuthRoleService { return authRoleDao.updateAuthRole(authRole); } - public Page listCustomerRoles(Integer page, Integer limit, Integer isCustomer) { + public IPage listCustomerRoles(Integer page, Integer limit, Integer isCustomer) { if (null == page || null == limit) { return new Page<>(); } - Page pageParam = new Page<>(page, limit); + IPage pageParam = new Page<>(page, limit); return authRoleDao.listCustomerRoles(pageParam, isCustomer); } diff --git a/src/main/java/com/glxp/udi/admin/service/auth/CustomerContactService.java b/src/main/java/com/glxp/udi/admin/service/auth/CustomerContactService.java index c5082e8..7204e0a 100644 --- a/src/main/java/com/glxp/udi/admin/service/auth/CustomerContactService.java +++ b/src/main/java/com/glxp/udi/admin/service/auth/CustomerContactService.java @@ -24,7 +24,9 @@ public class CustomerContactService { return new Page<>(); } Page page = new Page<>(customerContactFilterRequest.getPage(), customerContactFilterRequest.getLimit()); - return customerContacDao.filterCustomerContact(page,customerContactFilterRequest); + QueryWrapper wrapper = new QueryWrapper<>(); + wrapper.eq(null != customerContactFilterRequest.getCustomerId(),"customerId", customerContactFilterRequest.getCustomerId()); + return customerContacDao.selectPage(page, wrapper); } public boolean insertCustomerContact(CustomerContactEntity customerContactEntity) { diff --git a/src/main/java/com/glxp/udi/admin/service/auth/UserRegisterService.java b/src/main/java/com/glxp/udi/admin/service/auth/UserRegisterService.java index b7fc6ae..463bb04 100644 --- a/src/main/java/com/glxp/udi/admin/service/auth/UserRegisterService.java +++ b/src/main/java/com/glxp/udi/admin/service/auth/UserRegisterService.java @@ -53,12 +53,13 @@ public class UserRegisterService { } public boolean isExit(String phoneNum) { - String data = userRegisterDao.isExit(phoneNum); - if (data != null) { + QueryWrapper countWrapper = new QueryWrapper<>(); + countWrapper.eq("mobile", phoneNum); + Long count = userRegisterDao.selectCount(countWrapper); + if (count > 0) { return true; - } else { - return false; } + return false; } public boolean deleteByCustomerId(Long id) { diff --git a/src/main/java/com/glxp/udi/admin/service/info/CompanyService.java b/src/main/java/com/glxp/udi/admin/service/info/CompanyService.java index 1ba8042..01647df 100644 --- a/src/main/java/com/glxp/udi/admin/service/info/CompanyService.java +++ b/src/main/java/com/glxp/udi/admin/service/info/CompanyService.java @@ -1,5 +1,6 @@ package com.glxp.udi.admin.service.info; +import cn.hutool.core.collection.CollUtil; import cn.hutool.core.util.StrUtil; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; @@ -30,7 +31,14 @@ public class CompanyService { return new Page<>(); } Page page = new Page<>(commitRequest.getPage(), commitRequest.getLimit()); - return companyDao.getSubCompany(page, commitRequest); + QueryWrapper wrapper = new QueryWrapper<>(); + wrapper.eq(StrUtil.isNotBlank(commitRequest.getCustomerId()), "customerId", commitRequest.getCustomerId()) + .like(StrUtil.isNotBlank(commitRequest.getCompanyName()), "companyName", commitRequest.getCompanyName()) + .like(StrUtil.isNotBlank(commitRequest.getCreditNum()), "creditNum", commitRequest.getCreditNum()) + .eq(StrUtil.isNotBlank(commitRequest.getAuditStatus()), "auditStatus", commitRequest.getAuditStatus()) + .eq(StrUtil.isNotBlank(commitRequest.getUnitIdFk()), "unitIdFk", commitRequest.getUnitIdFk()) + .in(StrUtil.isBlank(commitRequest.getAuditStatus()) && CollUtil.isNotEmpty(commitRequest.getAuditStatusList()), "auditStatus", commitRequest.getAuditStatusList()); + return companyDao.selectPage(page, wrapper); } public boolean modifyCompany(CompanyEntity companyEntity) { diff --git a/src/main/java/com/glxp/udi/admin/service/inout/UdiRelevanceService.java b/src/main/java/com/glxp/udi/admin/service/inout/UdiRelevanceService.java index f1144c4..f87075f 100644 --- a/src/main/java/com/glxp/udi/admin/service/inout/UdiRelevanceService.java +++ b/src/main/java/com/glxp/udi/admin/service/inout/UdiRelevanceService.java @@ -1,5 +1,6 @@ package com.glxp.udi.admin.service.inout; +import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.glxp.udi.admin.constant.ConstantStatus; import com.glxp.udi.admin.dao.inout.UdiRelevanceDao; @@ -23,15 +24,15 @@ public class UdiRelevanceService { @Resource private UdiRelevanceDao udiRelevanceDao; - public Page filterUdiRelevance(FilterUdiInfoRequest filterUdiInfoRequest) { + public IPage filterUdiRelevance(FilterUdiInfoRequest filterUdiInfoRequest) { if (filterUdiInfoRequest == null) { return new Page<>(); } - Page page = new Page<>(-1, -1); + IPage page = new Page<>(-1, -1); if (null != filterUdiInfoRequest.getPage() && null != filterUdiInfoRequest.getLimit()) { new Page<>(filterUdiInfoRequest.getPage(), filterUdiInfoRequest.getLimit()); } - return udiRelevanceDao.filterUdiRelevance(page,filterUdiInfoRequest); + return udiRelevanceDao.filterUdiRelevance(page, filterUdiInfoRequest.getYlqxzcrbarmc(), filterUdiInfoRequest.getCpmctymc(), filterUdiInfoRequest.getNameCode(), filterUdiInfoRequest.getThirdId(), filterUdiInfoRequest.getUuid()); } public UdiRelevanceEntity selectById(String id) { @@ -56,7 +57,7 @@ public class UdiRelevanceService { public UdiRelevanceResponse selectByNameCode(String nameCode) { FilterUdiInfoRequest filterUdiInfoRequest = new FilterUdiInfoRequest(); filterUdiInfoRequest.setUniqueNameCode(nameCode); - Page page = filterUdiRelevance(filterUdiInfoRequest); + IPage page = filterUdiRelevance(filterUdiInfoRequest); if (page.getTotal() > 0) { return page.getRecords().get(0); } @@ -66,7 +67,7 @@ public class UdiRelevanceService { public List selectByMainId(String mainId) { FilterUdiInfoRequest filterUdiInfoRequest = new FilterUdiInfoRequest(); filterUdiInfoRequest.setMainId(mainId); - Page page = filterUdiRelevance(filterUdiInfoRequest); + IPage page = filterUdiRelevance(filterUdiInfoRequest); return page.getRecords(); } diff --git a/src/main/java/com/glxp/udi/admin/service/inout/UnitMaintainService.java b/src/main/java/com/glxp/udi/admin/service/inout/UnitMaintainService.java index 0dc4cee..1ed2340 100644 --- a/src/main/java/com/glxp/udi/admin/service/inout/UnitMaintainService.java +++ b/src/main/java/com/glxp/udi/admin/service/inout/UnitMaintainService.java @@ -59,11 +59,11 @@ public class UnitMaintainService { return unitMaintainDao.selectByName(name); } - public Page getUnbindUnitMaintain(UnitMaintainFilterRequest unitMaintainFilterRequest) { + public IPage getUnbindUnitMaintain(UnitMaintainFilterRequest unitMaintainFilterRequest) { if (unitMaintainFilterRequest == null) { return new Page<>(); } - Page page = new Page<>(unitMaintainFilterRequest.getPage(), unitMaintainFilterRequest.getLimit()); + IPage page = new Page<>(unitMaintainFilterRequest.getPage(), unitMaintainFilterRequest.getLimit()); return unitMaintainDao.getUnbindUnitMaintain(page, unitMaintainFilterRequest.getCustomerId()); } diff --git a/src/main/java/com/glxp/udi/admin/service/inventory/StockPrintTempService.java b/src/main/java/com/glxp/udi/admin/service/inventory/StockPrintTempService.java index b891d0e..88b657b 100644 --- a/src/main/java/com/glxp/udi/admin/service/inventory/StockPrintTempService.java +++ b/src/main/java/com/glxp/udi/admin/service/inventory/StockPrintTempService.java @@ -1,5 +1,7 @@ package com.glxp.udi.admin.service.inventory; +import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; +import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; import com.glxp.udi.admin.dao.inventory.StockPrintTempDao; import com.glxp.udi.admin.entity.inventory.StockPrintTempEntity; @@ -19,16 +21,17 @@ public class StockPrintTempService { @Resource private StockPrintTempDao stockPrintTempDao; - public Page filterStockPrintTempEntity(FilterStPrintTempRequest filterStockprintRequest) { + public IPage filterStockPrintTempEntity(FilterStPrintTempRequest filterStockprintRequest) { if (filterStockprintRequest == null) { return new Page<>(); } - Page page = new Page<>(-1, -1); - if (filterStockprintRequest.getPage() != null && null != filterStockprintRequest.getLimit()) { - page = new Page<>(filterStockprintRequest.getPage(), filterStockprintRequest.getLimit()); - } - return stockPrintTempDao.filterStockPrintTempEntity(page, filterStockprintRequest); + IPage page = new Page<>(filterStockprintRequest.getPage(), filterStockprintRequest.getLimit()); + QueryWrapper wrapper = new QueryWrapper<>(); + wrapper.eq(null != filterStockprintRequest.getPrintCodeIdFk(), "printCodeIdFk", filterStockprintRequest.getPrintCodeIdFk()) + .eq(null != filterStockprintRequest.getId(), "id", filterStockprintRequest.getId()) + .eq(null != filterStockprintRequest.getStockOrderFk(), "stockOrderFk", filterStockprintRequest.getStockOrderFk()); + return stockPrintTempDao.selectPage(page, wrapper); } public boolean deleteById(DeleteStPrintTempRequest deleteStPrintTempRequest) { diff --git a/src/main/resources/mybatis/mapper/auth/AuthAdminDao.xml b/src/main/resources/mybatis/mapper/auth/AuthAdminDao.xml index 8f0df06..86a8b48 100644 --- a/src/main/resources/mybatis/mapper/auth/AuthAdminDao.xml +++ b/src/main/resources/mybatis/mapper/auth/AuthAdminDao.xml @@ -2,16 +2,15 @@ - + @@ -41,7 +39,8 @@ - INSERT INTO auth_user(userName,passWord,lastLoginIp,lastLoginTime,createTime,userFlag,employeeName,CustomerId) + INSERT INTO auth_user(userName, passWord, lastLoginIp, lastLoginTime, createTime, userFlag, employeeName, + CustomerId) values (#{userName}, @@ -53,7 +52,6 @@ - #{lastLoginIp}, @@ -101,7 +99,7 @@ comments = #{comments}, - WHERE id=#{id} + WHERE id = #{id} @@ -111,13 +109,20 @@ + \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/auth/AuthLicenseDao.xml b/src/main/resources/mybatis/mapper/auth/AuthLicenseDao.xml index 57e8b5e..370cbcb 100644 --- a/src/main/resources/mybatis/mapper/auth/AuthLicenseDao.xml +++ b/src/main/resources/mybatis/mapper/auth/AuthLicenseDao.xml @@ -2,7 +2,6 @@ - delete from auth_license @@ -10,7 +9,9 @@ diff --git a/src/main/resources/mybatis/mapper/auth/AuthPermissionDao.xml b/src/main/resources/mybatis/mapper/auth/AuthPermissionDao.xml index d7da458..38f7b94 100644 --- a/src/main/resources/mybatis/mapper/auth/AuthPermissionDao.xml +++ b/src/main/resources/mybatis/mapper/auth/AuthPermissionDao.xml @@ -17,10 +17,9 @@ where roleId = #{roleId} - INSERT INTO auth_permission - (roleId, permissionRuleId,`type`) + (roleId, permissionRuleId, `type`) VALUES @@ -29,8 +28,10 @@ - - delete from auth_permission where roleId = #{roleId} + delete + from auth_permission + where roleId = #{roleId} + \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/auth/AuthPermissionRuleDao.xml b/src/main/resources/mybatis/mapper/auth/AuthPermissionRuleDao.xml index 4341e15..068c481 100644 --- a/src/main/resources/mybatis/mapper/auth/AuthPermissionRuleDao.xml +++ b/src/main/resources/mybatis/mapper/auth/AuthPermissionRuleDao.xml @@ -12,7 +12,7 @@ @@ -36,12 +36,13 @@ - INSERT INTO auth_permission_rule(pid,`name`,`title`,`status`,`condition`,`listorder`,create_time,update_time) + INSERT INTO auth_permission_rule(pid, `name`, `title`, `status`, `condition`, `listorder`, create_time, + update_time) values (#{pid}, - #{name}, - #{title}, - #{status}, + #{name}, + #{title}, + #{status}, #{condition}, @@ -80,7 +81,7 @@ update_time=#{updateTime}, - WHERE id=#{id} + WHERE id = #{id} \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/auth/AuthRoleAdminDao.xml b/src/main/resources/mybatis/mapper/auth/AuthRoleAdminDao.xml index d370abb..2fb9ab7 100644 --- a/src/main/resources/mybatis/mapper/auth/AuthRoleAdminDao.xml +++ b/src/main/resources/mybatis/mapper/auth/AuthRoleAdminDao.xml @@ -9,7 +9,9 @@ @@ -30,7 +32,7 @@ INSERT INTO auth_role_admin - (role_id, admin_id) + (role_id, admin_id) VALUES @@ -40,7 +42,9 @@ - delete from auth_role_admin where admin_id = #{adminId} + delete + from auth_role_admin + where admin_id = #{adminId} + - update auth_role_admin set role_id = #{roleId} where admin_id = #{adminId} + update auth_role_admin + set role_id = #{roleId} + where admin_id = #{adminId} + \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/auth/AuthRoleDao.xml b/src/main/resources/mybatis/mapper/auth/AuthRoleDao.xml index 7fb47b6..af2c784 100644 --- a/src/main/resources/mybatis/mapper/auth/AuthRoleDao.xml +++ b/src/main/resources/mybatis/mapper/auth/AuthRoleDao.xml @@ -4,20 +4,20 @@ - - - - INSERT INTO auth_role(`name`,pid,`status`,`remark`,`listorder`,create_time,update_time,isCustomer) + INSERT INTO auth_role(`name`, pid, `status`, `remark`, `listorder`, create_time, update_time, isCustomer) values - ( - #{name}, + (#{name}, #{pid}, @@ -79,8 +75,7 @@ #{createTime}, #{updateTime}, - #{isCustomer} - ) + #{isCustomer}) @@ -108,7 +103,6 @@ isCustomer=#{isCustomer}, - WHERE id=#{id} + WHERE id = #{id} - \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/auth/CustomerContactDao.xml b/src/main/resources/mybatis/mapper/auth/CustomerContactDao.xml index 4ad2bc0..659c863 100644 --- a/src/main/resources/mybatis/mapper/auth/CustomerContactDao.xml +++ b/src/main/resources/mybatis/mapper/auth/CustomerContactDao.xml @@ -2,32 +2,16 @@ - - INSERT INTO customer_contact - ( - customerId, contacts, - mobile, tel, email, - comments - ) - values - ( - #{customerId},#{contacts}, - #{mobile},#{tel},#{email}, - #{comments} - ) + (customerId, contacts, + mobile, tel, email, + comments) + values (#{customerId}, #{contacts}, + #{mobile}, #{tel}, #{email}, + #{comments}) @@ -49,7 +33,6 @@ comments=#{comments}, - WHERE customerId=#{customerId} + WHERE customerId = #{customerId} - \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/auth/CustomerInfoDao.xml b/src/main/resources/mybatis/mapper/auth/CustomerInfoDao.xml index c707b5f..49cd1a3 100644 --- a/src/main/resources/mybatis/mapper/auth/CustomerInfoDao.xml +++ b/src/main/resources/mybatis/mapper/auth/CustomerInfoDao.xml @@ -2,15 +2,26 @@ - SELECT customer_info.customerId, - customer_info.customerName, - customer_info.creditNum, - customer_info.area, - customer_info.detailAddr, - customer_info.bussinessStatus, - customer_info.isInfoLink, - customer_info.infoLink, - customer_info.roleId, - customer_info.userFlag, - customer_contact.contacts, - customer_contact.mobile, - customer_info.userMax, - customer_contact.email, - customer_contact.tel, - customer_info.companyName + customer_info.customerName, + customer_info.creditNum, + customer_info.area, + customer_info.detailAddr, + customer_info.bussinessStatus, + customer_info.isInfoLink, + customer_info.infoLink, + customer_info.roleId, + customer_info.userFlag, + customer_contact.contacts, + customer_contact.mobile, + customer_info.userMax, + customer_contact.email, + customer_contact.tel, + customer_info.companyName FROM customer_info - INNER JOIN customer_contact on customer_info.customerId = customer_contact.customerId + INNER JOIN customer_contact on customer_info.customerId = customer_contact.customerId where customer_info.customerId = #{customerId} @@ -60,15 +71,15 @@ parameterType="com.glxp.udi.admin.entity.auth.CustomerInfoEntity"> INSERT INTO customer_info (customerId, customerName, creditNum, - area, detailAddr, bussinessStatus, - userFlag, isInfoLink, infoLink, - roleId, comments, userMax, companyName) + area, detailAddr, bussinessStatus, + userFlag, isInfoLink, infoLink, + roleId, comments, userMax, companyName) values (#{customerId}, #{customerName}, #{creditNum}, - #{area}, #{detailAddr}, #{bussinessStatus}, - #{userFlag}, #{isInfoLink}, #{infoLink}, - #{roleId}, - #{comments}, - #{userMax}, #{companyName}) + #{area}, #{detailAddr}, #{bussinessStatus}, + #{userFlag}, #{isInfoLink}, #{infoLink}, + #{roleId}, + #{comments}, + #{userMax}, #{companyName}) @@ -108,10 +119,9 @@ companyName=#{companyName}, - WHERE customerId=#{customerId} + WHERE customerId = #{customerId} - delete from customer_info @@ -119,6 +129,8 @@ \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/auth/DeviceKeyDao.xml b/src/main/resources/mybatis/mapper/auth/DeviceKeyDao.xml index dff5bf5..7254a8f 100644 --- a/src/main/resources/mybatis/mapper/auth/DeviceKeyDao.xml +++ b/src/main/resources/mybatis/mapper/auth/DeviceKeyDao.xml @@ -2,11 +2,10 @@ - - - SELECT * FROM device_check + SELECT * + FROM device_check and imei = #{imei} @@ -31,62 +31,107 @@ UPDATE device_check - isCheck=#{isCheck}, - companyName=#{companyName}, - phone=#{phone}, - contact=#{contact}, - imeiKey=#{imeiKey}, - date=#{date}, - creditNum=#{creditNum}, - rgType=#{rgType}, - remark=#{remark}, - customerId=#{customerId}, - applicant=#{applicant}, + + isCheck=#{isCheck}, + + + companyName=#{companyName}, + + + phone=#{phone}, + + + contact=#{contact}, + + + imeiKey=#{imeiKey}, + + + date=#{date}, + + + creditNum=#{creditNum}, + + + rgType=#{rgType}, + + + remark=#{remark}, + + + customerId=#{customerId}, + + + applicant=#{applicant}, + - WHERE id=#{id} + WHERE id = #{id} UPDATE device_check - isCheck=#{isCheck}, - companyName=#{companyName}, - phone=#{phone}, - contact=#{contact}, - imeiKey=#{imeiKey}, - date=#{date}, - imei=#{imei}, - creditNum=#{creditNum}, - rgType=#{rgType}, - remark=#{remark}, - customerId=#{customerId} - applicant=#{applicant} + + isCheck=#{isCheck}, + + + companyName=#{companyName}, + + + phone=#{phone}, + + + contact=#{contact}, + + + imeiKey=#{imeiKey}, + + + date=#{date}, + + + imei=#{imei}, + + + creditNum=#{creditNum}, + + + rgType=#{rgType}, + + + remark=#{remark}, + + + customerId=#{customerId} + + + applicant=#{applicant} + WHERE imei=#{imei} - replace INTO device_check( - imei, - isCheck, - companyName, - phone, - contact, - date, - imeiKey,creditNum,rgType,remark,customerId,applicant) values - ( - #{imei}, - #{isCheck}, - #{companyName}, - #{phone}, - #{contact}, - #{date}, - #{imeiKey},#{creditNum},#{rgType},#{remark},#{customerId}, - #{applicant} - ) + replace INTO device_check(imei, + isCheck, + companyName, + phone, + contact, + date, + imeiKey, creditNum, rgType, remark, customerId, applicant) + values (#{imei}, + #{isCheck}, + #{companyName}, + #{phone}, + #{contact}, + #{date}, + #{imeiKey}, #{creditNum}, #{rgType}, #{remark}, #{customerId}, + #{applicant}) - DELETE FROM device_check WHERE id = #{id} + DELETE + FROM device_check + WHERE id = #{id} - \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/basic/BussinessTypeDao.xml b/src/main/resources/mybatis/mapper/basic/BussinessTypeDao.xml index f600870..898ec55 100644 --- a/src/main/resources/mybatis/mapper/basic/BussinessTypeDao.xml +++ b/src/main/resources/mybatis/mapper/basic/BussinessTypeDao.xml @@ -2,39 +2,58 @@ - - SELECT - basic_bussiness_type.id,basic_bussiness_type.action,basic_bussiness_type.name, - basic_bussiness_type.enable,basic_bussiness_type.remark,basic_bussiness_type.mainAction, - basic_bussiness_type.thirdSysFk,basic_bussiness_type.localAction,basic_bussiness_type.secCheckEnable, - basic_bussiness_type.checkUdims,basic_bussiness_type.checkPdaEd,basic_bussiness_type.checkPdaUn,basic_bussiness_type.checkPc, - basic_bussiness_type.checkWebNew,basic_bussiness_type.checkChange, - basic_bussiness_type.secCheckUdims, basic_bussiness_type.secCheckPdaEd, basic_bussiness_type.secCheckPdaUn, - basic_bussiness_type.secCheckWebNew, basic_bussiness_type.secCheckChange, - basic_bussiness_type.checkEnable, basic_bussiness_type.genUnit,basic_bussiness_type.innerOrder, - corpType,basic_bussiness_type.storageCode,basic_bussiness_type.checkBalacne,defaultUnit,prefix, - basic_bussiness_type.secCheckBalacne, basic_bussiness_type.supplementOrderType + SELECT basic_bussiness_type.id, + basic_bussiness_type.action, + basic_bussiness_type.name, + basic_bussiness_type.enable, + basic_bussiness_type.remark, + basic_bussiness_type.mainAction, + basic_bussiness_type.thirdSysFk, + basic_bussiness_type.localAction, + basic_bussiness_type.secCheckEnable, + basic_bussiness_type.checkUdims, + basic_bussiness_type.checkPdaEd, + basic_bussiness_type.checkPdaUn, + basic_bussiness_type.checkPc, + basic_bussiness_type.checkWebNew, + basic_bussiness_type.checkChange, + basic_bussiness_type.secCheckUdims, + basic_bussiness_type.secCheckPdaEd, + basic_bussiness_type.secCheckPdaUn, + basic_bussiness_type.secCheckWebNew, + basic_bussiness_type.secCheckChange, + basic_bussiness_type.checkEnable, + basic_bussiness_type.genUnit, + basic_bussiness_type.innerOrder, + corpType, + basic_bussiness_type.storageCode, + basic_bussiness_type.checkBalacne, + defaultUnit, + prefix, + basic_bussiness_type.secCheckBalacne, + basic_bussiness_type.supplementOrderType FROM basic_bussiness_type - INNER JOIN inv_warehouse_bussiness_type on basic_bussiness_type.action = inv_warehouse_bussiness_type.action - INNER JOIN inv_warehouse on inv_warehouse_bussiness_type.`code` = inv_warehouse.`code` - INNER JOIN inv_warehouse_user on inv_warehouse.`code` =inv_warehouse_user.`code` + INNER JOIN inv_warehouse_bussiness_type + on basic_bussiness_type.action = inv_warehouse_bussiness_type.action + INNER JOIN inv_warehouse on inv_warehouse_bussiness_type.`code` = inv_warehouse.`code` + INNER JOIN inv_warehouse_user on inv_warehouse.`code` = inv_warehouse_user.`code` - AND basic_bussiness_type.name LIKE concat('%',#{name},'%') + AND basic_bussiness_type.name LIKE concat('%', #{name}, '%') - AND basic_bussiness_type.action LIKE concat(#{action},'%') + AND basic_bussiness_type.action LIKE concat(#{action}, '%') - AND basic_bussiness_type.mainAction LIKE concat(#{mainAction},'%') + AND basic_bussiness_type.mainAction LIKE concat(#{mainAction}, '%') - AND inv_warehouse.`code` =#{locInvCode} + AND inv_warehouse.`code` = #{locInvCode} - and basic_bussiness_type.customerId = #{customerId} + and basic_bussiness_type.customerId = #{customerId} and basic_bussiness_type.enable = #{enabled} @@ -83,134 +122,187 @@ group by basic_bussiness_type.action - replace - INTO basic_bussiness_type - (action,name,enable,remark,mainAction,localAction,thirdSysFk, - checkEnable,genUnit,innerOrder,secCheckEnable, - checkUdims,checkPdaEd,checkPdaUn,checkPc,checkWebNew,checkChange - ,secCheckUdims,secCheckPdaEd,secCheckPdaUn,secCheckPc,secCheckWebNew, - secCheckChange,corpType,basic_bussiness_type.storageCode,checkBalacne, - secCheckBalacne,supplementOrderType,defaultUnit,customerId,prefix) - values - ( - #{action}, - #{name}, - #{enable}, - #{remark}, - #{mainAction}, - #{localAction}, - #{thirdSysFk}, - #{checkEnable}, - #{genUnit}, - #{innerOrder}, - #{secCheckEnable}, - #{checkUdims}, - #{checkPdaEd}, - #{checkPdaUn}, - #{checkPc}, - #{checkWebNew}, - #{checkChange}, - #{secCheckUdims}, - #{secCheckPdaEd}, - #{secCheckPdaUn}, - #{secCheckPc}, - #{secCheckWebNew}, - #{secCheckChange}, - #{corpType}, - #{storageCode}, - #{checkBalacne}, - #{secCheckBalacne}, - #{supplementOrderType}, - #{defaultUnit}, - #{customerId}, - #{prefix} - ) + INTO basic_bussiness_type + (action, name, enable, remark, mainAction, localAction, thirdSysFk, + checkEnable, genUnit, innerOrder, secCheckEnable, + checkUdims, checkPdaEd, checkPdaUn, checkPc, checkWebNew, checkChange + , secCheckUdims, secCheckPdaEd, secCheckPdaUn, secCheckPc, secCheckWebNew, + secCheckChange, corpType, basic_bussiness_type.storageCode, checkBalacne, + secCheckBalacne, supplementOrderType, defaultUnit, customerId, prefix) + values (#{action}, + #{name}, + #{enable}, + #{remark}, + #{mainAction}, + #{localAction}, + #{thirdSysFk}, + #{checkEnable}, + #{genUnit}, + #{innerOrder}, + #{secCheckEnable}, + #{checkUdims}, + #{checkPdaEd}, + #{checkPdaUn}, + #{checkPc}, + #{checkWebNew}, + #{checkChange}, + #{secCheckUdims}, + #{secCheckPdaEd}, + #{secCheckPdaUn}, + #{secCheckPc}, + #{secCheckWebNew}, + #{secCheckChange}, + #{corpType}, + #{storageCode}, + #{checkBalacne}, + #{secCheckBalacne}, + #{supplementOrderType}, + #{defaultUnit}, + #{customerId}, + #{prefix}) insert - ignore + ignore INTO basic_bussiness_type - (`index`,action,name,enable,remark,mainAction,localAction,thirdSysFk, - checkEnable,genUnit,innerOrder,secCheckEnable, - checkUdims,checkPdaEd,checkPdaUn,checkPc,checkWebNew,checkChange - ,secCheckUdims,secCheckPdaEd,secCheckPdaUn,secCheckPc,secCheckWebNew, - secCheckChange,corpType,storageCode,checkBalacne,secCheckBalacne,supplementOrderType,defaultUnit,prefix) - values - ( - #{index}, - #{action}, - #{name}, - #{enable}, - #{remark}, - #{mainAction}, - #{localAction}, - #{thirdSysFk}, - #{checkEnable}, - #{genUnit}, - #{innerOrder}, - #{secCheckEnable}, - #{checkUdims}, - #{checkPdaEd}, - #{checkPdaUn}, - #{checkPc}, - #{checkWebNew}, - #{checkChange}, - #{secCheckUdims}, - #{secCheckPdaEd}, - #{secCheckPdaUn}, - #{secCheckPc}, - #{secCheckWebNew}, - #{secCheckChange}, - #{corpType}, - #{storageCode}, - #{checkBalacne}, - #{secCheckBalacnesecCheckBalacne}, - #{supplementOrderType}, - #{defaultUnit}, - #{prefix} - ) + (`index`, action, name, enable, remark, mainAction, localAction, thirdSysFk, + checkEnable, genUnit, innerOrder, secCheckEnable, + checkUdims, checkPdaEd, checkPdaUn, checkPc, checkWebNew, checkChange + , secCheckUdims, secCheckPdaEd, secCheckPdaUn, secCheckPc, secCheckWebNew, + secCheckChange, corpType, storageCode, checkBalacne, supplementOrderType, defaultUnit, prefix) + values (#{index}, + #{action}, + #{name}, + #{enable}, + #{remark}, + #{mainAction}, + #{localAction}, + #{thirdSysFk}, + #{checkEnable}, + #{genUnit}, + #{innerOrder}, + #{secCheckEnable}, + #{checkUdims}, + #{checkPdaEd}, + #{checkPdaUn}, + #{checkPc}, + #{checkWebNew}, + #{checkChange}, + #{secCheckUdims}, + #{secCheckPdaEd}, + #{secCheckPdaUn}, + #{secCheckPc}, + #{secCheckWebNew}, + #{secCheckChange}, + #{corpType}, + #{storageCode}, + #{checkBalacne}, + #{supplementOrderType}, + #{defaultUnit}, + #{prefix}) - UPDATE basic_bussiness_type - action = #{action}, - name = #{name}, - enable = #{enable}, - remark = #{remark}, - mainAction = #{mainAction}, - localAction=#{localAction}, - checkEnable=#{checkEnable}, - genUnit=#{genUnit}, - innerOrder=#{innerOrder}, - secCheckEnable=#{secCheckEnable}, - checkUdims=#{checkUdims}, - checkPdaEd=#{checkPdaEd}, - checkPdaUn=#{checkPdaUn}, - checkPc=#{checkPc}, - checkWebNew=#{checkWebNew}, - checkChange=#{checkChange}, - secCheckUdims=#{secCheckUdims}, - secCheckPdaEd=#{secCheckPdaEd}, - secCheckPdaUn=#{secCheckPdaUn}, - secCheckPc=#{secCheckPc}, - secCheckWebNew=#{secCheckWebNew}, - secCheckChange=#{secCheckChange}, - checkBalacne=#{checkBalacne}, - secCheckBalacne=#{secCheckBalacne}, - index=#{index}, - corpType=#{corpType}, - storageCode=#{storageCode}, - supplementOrderType=#{supplementOrderType}, - defaultUnit=#{defaultUnit}, - customerId=#{customerId}, - prefix=#{prefix}, + + action = #{action}, + + + name = #{name}, + + + enable = #{enable}, + + + remark = #{remark}, + + + mainAction = #{mainAction}, + + + localAction=#{localAction}, + + + checkEnable=#{checkEnable}, + + + genUnit=#{genUnit}, + + + innerOrder=#{innerOrder}, + + + secCheckEnable=#{secCheckEnable}, + + + checkUdims=#{checkUdims}, + + + checkPdaEd=#{checkPdaEd}, + + + checkPdaUn=#{checkPdaUn}, + + + checkPc=#{checkPc}, + + + checkWebNew=#{checkWebNew}, + + + checkChange=#{checkChange}, + + + secCheckUdims=#{secCheckUdims}, + + + secCheckPdaEd=#{secCheckPdaEd}, + + + secCheckPdaUn=#{secCheckPdaUn}, + + + secCheckPc=#{secCheckPc}, + + + secCheckWebNew=#{secCheckWebNew}, + + + secCheckChange=#{secCheckChange}, + + + checkBalacne=#{checkBalacne}, + + + secCheckBalacne=#{secCheckBalacne}, + + + index=#{index}, + + + corpType=#{corpType}, + + + storageCode=#{storageCode}, + + + supplementOrderType=#{supplementOrderType}, + + + defaultUnit=#{defaultUnit}, + + + customerId=#{customerId}, + + + prefix=#{prefix}, + thirdSysFk=#{thirdSysFk}, WHERE id = #{id} @@ -260,10 +352,15 @@ diff --git a/src/main/resources/mybatis/mapper/basic/BussinessTypeRoleDao.xml b/src/main/resources/mybatis/mapper/basic/BussinessTypeRoleDao.xml index 51d0d5c..afc78a9 100644 --- a/src/main/resources/mybatis/mapper/basic/BussinessTypeRoleDao.xml +++ b/src/main/resources/mybatis/mapper/basic/BussinessTypeRoleDao.xml @@ -16,11 +16,11 @@ insert into basic_bussiness_type_role - (role_id, action) + (role_id, action) values (#{item.role_id}, - #{item.action}) + #{item.action}) diff --git a/src/main/resources/mybatis/mapper/info/CompanyDao.xml b/src/main/resources/mybatis/mapper/info/CompanyDao.xml index 4cff7e7..68bb54d 100644 --- a/src/main/resources/mybatis/mapper/info/CompanyDao.xml +++ b/src/main/resources/mybatis/mapper/info/CompanyDao.xml @@ -9,19 +9,19 @@ where customerId = #{CustomerId} - + delete from company @@ -44,33 +45,6 @@ where companyName = #{companyName} - - UPDATE company @@ -183,63 +157,57 @@ unitIdFk=#{unitIdFk}, - WHERE customerId=#{customerId} + WHERE customerId = #{customerId} INSERT INTO company(companyName, bussinessStatus, creditNum, classes, area, - detailAddr, appId, appSecret, contacts, mobile, tel, email, customerId, areaCode, - refEntId, entId, networkType, certIdFk, parentIdFk, - contactsPapersType, contactsPapersCode, registerStatus, jyxkzh, jyxkzfzjg, jyxkzyxq, - jybapzh, jybabm, fzrq, suihao, kaihuhang, kaihuzhanghao, auditStatus, - filePath, filePath2, filePath3, filePath4, unitIdFk) + detailAddr, appId, appSecret, contacts, mobile, tel, email, customerId, areaCode, + refEntId, entId, networkType, certIdFk, parentIdFk, + contactsPapersType, contactsPapersCode, registerStatus, jyxkzh, jyxkzfzjg, jyxkzyxq, + jybapzh, jybabm, fzrq, suihao, kaihuhang, kaihuzhanghao, auditStatus, + filePath, filePath2, filePath3, filePath4, unitIdFk) values (#{companyName}, - #{bussinessStatus}, - #{creditNum}, - #{classes}, - #{area}, - #{detailAddr}, - #{appId}, - #{appSecret}, - #{contacts}, - #{mobile}, - #{tel}, - #{email}, - #{customerId}, - #{areaCode}, - #{refEntId}, - #{entId}, - #{networkType}, - #{certIdFk}, - #{parentIdFk}, - #{contactsPapersType}, - #{contactsPapersCode}, - #{registerStatus}, - #{jyxkzh}, - #{jyxkzfzjg}, - #{jyxkzyxq}, - #{jybapzh}, - #{jybabm}, - #{fzrq}, - #{suihao}, - #{kaihuhang}, - #{kaihuzhanghao}, - #{auditStatus}, - #{filePath}, - #{filePath2}, - #{filePath3}, - #{filePath4}, #{unitIdFk}) + #{bussinessStatus}, + #{creditNum}, + #{classes}, + #{area}, + #{detailAddr}, + #{appId}, + #{appSecret}, + #{contacts}, + #{mobile}, + #{tel}, + #{email}, + #{customerId}, + #{areaCode}, + #{refEntId}, + #{entId}, + #{networkType}, + #{certIdFk}, + #{parentIdFk}, + #{contactsPapersType}, + #{contactsPapersCode}, + #{registerStatus}, + #{jyxkzh}, + #{jyxkzfzjg}, + #{jyxkzyxq}, + #{jybapzh}, + #{jybabm}, + #{fzrq}, + #{suihao}, + #{kaihuhang}, + #{kaihuzhanghao}, + #{auditStatus}, + #{filePath}, + #{filePath2}, + #{filePath3}, + #{filePath4}, #{unitIdFk}) - + select companyName from company - INNER JOIN alicert on company.certIdFk = alicert.id - where company.customerId = #{customerId} - + where customerId = #{customerId} + \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/info/CompanyUpdateLogDao.xml b/src/main/resources/mybatis/mapper/info/CompanyUpdateLogDao.xml index 927d7b8..1ca2d26 100644 --- a/src/main/resources/mybatis/mapper/info/CompanyUpdateLogDao.xml +++ b/src/main/resources/mybatis/mapper/info/CompanyUpdateLogDao.xml @@ -2,24 +2,24 @@ - - SELECT * FROM company_update_log where customerId = #{customerId} + SELECT * + FROM company_update_log + where customerId = #{customerId} UPDATE company_update_log - customerId=#{customerId}, - updateCause=#{updateCause}, - status=#{status}, - create_time=#{create_time}, - update_time=#{update_time}, - submit=#{submit}, - auditor=#{auditor}, - noPassCause=#{noPassCause}, - param=#{param}, - logType=#{logType}, + + customerId=#{customerId}, + + + updateCause=#{updateCause}, + + + status=#{status}, + + + create_time=#{create_time}, + + + update_time=#{update_time}, + + + submit=#{submit}, + + + auditor=#{auditor}, + + + noPassCause=#{noPassCause}, + + + param=#{param}, + + + logType=#{logType}, + WHERE id = #{id} - INSERT INTO company_update_log(customerId,updateCause,status,create_time,update_time, - submit,auditor,noPassCause,param,logType) values - ( - #{customerId}, - #{updateCause}, - #{status}, - #{create_time}, - #{update_time}, - #{submit}, - #{auditor}, - #{noPassCause}, - #{param}, - #{logType} - ) + INSERT INTO company_update_log(customerId, updateCause, status, create_time, update_time, + submit, auditor, noPassCause, param, logType) + values (#{customerId}, + #{updateCause}, + #{status}, + #{create_time}, + #{update_time}, + #{submit}, + #{auditor}, + #{noPassCause}, + #{param}, + #{logType}) - \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/info/PlatformDao.xml b/src/main/resources/mybatis/mapper/info/PlatformDao.xml index 1b7aeed..5ebec0e 100644 --- a/src/main/resources/mybatis/mapper/info/PlatformDao.xml +++ b/src/main/resources/mybatis/mapper/info/PlatformDao.xml @@ -2,7 +2,6 @@ - insert into auth_platform (id, name, host) @@ -11,23 +10,25 @@ replace into auth_platform - ( id,name,host ) + (id, name, host) values - ( - #{item.id},#{item.name,jdbcType=VARCHAR},#{item.host,jdbcType=VARCHAR} - ) + (#{item.id}, #{item.name,jdbcType=VARCHAR}, #{item.host,jdbcType=VARCHAR}) update auth_platform - name=#{name}, - host=#{host}, + + name=#{name}, + + + host=#{host}, + - where id=#{id} + where id = #{id} diff --git a/src/main/resources/mybatis/mapper/info/ScheduleDao.xml b/src/main/resources/mybatis/mapper/info/ScheduleDao.xml index 9b2b12f..4158fc1 100644 --- a/src/main/resources/mybatis/mapper/info/ScheduleDao.xml +++ b/src/main/resources/mybatis/mapper/info/ScheduleDao.xml @@ -2,8 +2,6 @@ - - insert INTO scheduled @@ -13,23 +11,26 @@ #{customerId}) - delete from scheduled where id = #{id} + UPDATE scheduled - cron=#{cron}, + + cron=#{cron}, + - WHERE cronName=#{cronName} + WHERE cronName = #{cronName} - - diff --git a/src/main/resources/mybatis/mapper/info/SetupDao.xml b/src/main/resources/mybatis/mapper/info/SetupDao.xml index d3a4200..622a645 100644 --- a/src/main/resources/mybatis/mapper/info/SetupDao.xml +++ b/src/main/resources/mybatis/mapper/info/SetupDao.xml @@ -4,7 +4,9 @@ @@ -29,15 +31,13 @@ lastUploadDate=#{lastUploadDate}, - WHERE customerId=#{customerId} + WHERE customerId = #{customerId} replace INTO customer_set(customerId, - checkUpbill,checkStock,checkRepeat,downloadRelation,uploadTime,lastUploadDate) values - ( - #{customerId}, - #{checkUpbill}, #{checkStock} , #{checkRepeat}, #{downloadRelation} - ,#{uploadTime},#{lastUploadDate}) + checkUpbill, checkStock, checkRepeat, downloadRelation, uploadTime, lastUploadDate) + values (#{customerId}, + #{checkUpbill}, #{checkStock}, #{checkRepeat}, #{downloadRelation}, #{uploadTime}, #{lastUploadDate}) \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/inout/CodesDao.xml b/src/main/resources/mybatis/mapper/inout/CodesDao.xml index d792585..715e896 100644 --- a/src/main/resources/mybatis/mapper/inout/CodesDao.xml +++ b/src/main/resources/mybatis/mapper/inout/CodesDao.xml @@ -2,8 +2,6 @@ - - update io_codes set fromCorp = #{fromCorp} and fromCorpId = #{fromCorpId} @@ -11,18 +9,26 @@ - update io_codes set orderId = #{newOrderId} where orderId = #{orderId} + update io_codes + set orderId = #{newOrderId} + where orderId = #{orderId} - update io_codes set count = #{count} where id = #{id} + update io_codes + set count = #{count} + where id = #{id} - delete from io_codes where orderId = #{orderId} + delete + from io_codes + where orderId = #{orderId} \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/inout/CodesTempDao.xml b/src/main/resources/mybatis/mapper/inout/CodesTempDao.xml index 9702e9c..ac9df58 100644 --- a/src/main/resources/mybatis/mapper/inout/CodesTempDao.xml +++ b/src/main/resources/mybatis/mapper/inout/CodesTempDao.xml @@ -3,18 +3,27 @@ - update io_codes_temp set count = #{count} where id = #{id} + update io_codes_temp + set count = #{count} + where id = #{id} - delete from io_codes_temp where id = #{id} and orderId = #{orderId} + delete + from io_codes_temp + where id = #{id} + and orderId = #{orderId} - delete from io_codes_temp where orderId = #{orderId} + delete + from io_codes_temp + where orderId = #{orderId} \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/inout/InvProductDetailDao.xml b/src/main/resources/mybatis/mapper/inout/InvProductDetailDao.xml index ffcffdd..41b92ad 100644 --- a/src/main/resources/mybatis/mapper/inout/InvProductDetailDao.xml +++ b/src/main/resources/mybatis/mapper/inout/InvProductDetailDao.xml @@ -9,6 +9,8 @@ - delete from io_inv_product_detail where orderIdFk = #{orderId} + delete + from io_inv_product_detail + where orderIdFk = #{orderId} \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/inout/OrderDao.xml b/src/main/resources/mybatis/mapper/inout/OrderDao.xml index 4d9040d..a4448eb 100644 --- a/src/main/resources/mybatis/mapper/inout/OrderDao.xml +++ b/src/main/resources/mybatis/mapper/inout/OrderDao.xml @@ -2,9 +2,9 @@ - - update io_order set actDate = #{actDate} + update io_order + set actDate = #{actDate} orderId = #{item} @@ -13,11 +13,14 @@ - update io_order set replicateNo = #{replicateNo} where orderId = #{orderId} + update io_order + set replicateNo = #{replicateNo} + where orderId = #{orderId} - \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/inout/OrderDetailDao.xml b/src/main/resources/mybatis/mapper/inout/OrderDetailDao.xml index 8999a2d..243cec5 100644 --- a/src/main/resources/mybatis/mapper/inout/OrderDetailDao.xml +++ b/src/main/resources/mybatis/mapper/inout/OrderDetailDao.xml @@ -3,6 +3,8 @@ - delete from io_order_detail where orderIdFk = #{orderId} + delete + from io_order_detail + where orderIdFk = #{orderId} \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/inout/StockQRCodeText.xml b/src/main/resources/mybatis/mapper/inout/StockQRCodeText.xml index 6f41f30..65d4380 100644 --- a/src/main/resources/mybatis/mapper/inout/StockQRCodeText.xml +++ b/src/main/resources/mybatis/mapper/inout/StockQRCodeText.xml @@ -2,60 +2,57 @@ - - + replace - INTO stock_qrcode_text(id, - orderId,detailId,text,textTag,status,param,create_time,update_time) - values( - #{id}, - #{orderId}, - #{detailId}, - #{text}, - #{textTag}, - #{status}, - #{param}, - #{create_time}, - #{update_time} - ) + INTO stock_qrcode_text(id, + orderId, detailId, text, textTag, status, param, create_time, update_time) + values (#{id}, + #{orderId}, + #{detailId}, + #{text}, + #{textTag}, + #{status}, + #{param}, + #{create_time}, + #{update_time}) - + replace INTO stock_qrcode_text(id, - orderId,detailId,text,textTag,status,param,create_time,update_time) + orderId, detailId, text, textTag, status, param, create_time, update_time) values - ( - #{item.id}, - #{item.orderId}, - #{item.detailId}, - #{item.text}, - #{item.textTag}, - #{item.status}, - #{item.param}, - #{item.create_time}, - #{item.update_time} - ) + (#{item.id}, + #{item.orderId}, + #{item.detailId}, + #{item.text}, + #{item.textTag}, + #{item.status}, + #{item.param}, + #{item.create_time}, + #{item.update_time}) - @@ -66,9 +63,9 @@ - \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/inout/UdiInfoDao.xml b/src/main/resources/mybatis/mapper/inout/UdiInfoDao.xml index cbfcb5b..3a16ea7 100644 --- a/src/main/resources/mybatis/mapper/inout/UdiInfoDao.xml +++ b/src/main/resources/mybatis/mapper/inout/UdiInfoDao.xml @@ -6,7 +6,8 @@ resultType="com.glxp.udi.admin.entity.inout.UdiInfoEntity"> SELECT * FROM io_productinfo - WHERE (uuid = #{uuid} and diType = 1) limit 1 + WHERE (uuid = #{uuid} and diType = 1) + limit 1 - select - udi_relevance.id, - udi_relevance.thirdId,udi_relevance.thirdName,udi_relevance.isUseDy, - udi_relevance.batchNo,udi_relevance.warehouseName, - io_productinfo.nameCode,io_productinfo.packRatio,io_productinfo.packLevel, - io_productinfo.bhxjsl,io_productinfo.bhzxxsbzsl,io_productinfo.zxxsbzbhsydysl, - io_productinfo.bhxjcpbm,io_productinfo.bzcj,io_productinfo.thirdProductNo, - io_productinfo.addType,io_productinfo.deviceRecordKey, - io_productinfo.thirdProductName,io_productinfo.cpmctymc,io_productinfo.cplb, - io_productinfo.flbm,io_productinfo.ggxh,io_productinfo.qxlb,io_productinfo.tyshxydm, - io_productinfo.ylqxzcrbarmc,io_productinfo.zczbhhzbapzbh,io_productinfo.ylqxzcrbarywmc, - io_productinfo.sydycpbs,io_productinfo.uuid,io_productinfo.sjcpbm,io_productinfo.versionNumber,io_productinfo.diType + select udi_relevance.id, + udi_relevance.thirdId, + udi_relevance.thirdName, + udi_relevance.isUseDy, + udi_relevance.batchNo, + udi_relevance.warehouseName, + io_productinfo.nameCode, + io_productinfo.packRatio, + io_productinfo.packLevel, + io_productinfo.bhxjsl, + io_productinfo.bhzxxsbzsl, + io_productinfo.zxxsbzbhsydysl, + io_productinfo.bhxjcpbm, + io_productinfo.bzcj, + io_productinfo.thirdProductNo, + io_productinfo.addType, + io_productinfo.deviceRecordKey, + io_productinfo.thirdProductName, + io_productinfo.cpmctymc, + io_productinfo.cplb, + io_productinfo.flbm, + io_productinfo.ggxh, + io_productinfo.qxlb, + io_productinfo.tyshxydm, + io_productinfo.ylqxzcrbarmc, + io_productinfo.zczbhhzbapzbh, + io_productinfo.ylqxzcrbarywmc, + io_productinfo.sydycpbs, + io_productinfo.uuid, + io_productinfo.sjcpbm, + io_productinfo.versionNumber, + io_productinfo.diType FROM udi_relevance - inner JOIN io_productinfo - ON io_productinfo.uuid = udi_relevance.uuid + inner JOIN io_productinfo + ON io_productinfo.uuid = udi_relevance.uuid - AND ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc},'%') + AND ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc}, '%') - AND cpmctymc LIKE concat(#{cpmctymc},'%') + AND cpmctymc LIKE concat(#{cpmctymc}, '%') - AND nameCode LIKE concat(#{nameCode},'%') + AND nameCode LIKE concat(#{nameCode}, '%') - AND thirdId LIKE concat(#{thirdId},'%') + AND thirdId LIKE concat(#{thirdId}, '%') AND uuid = #{uuid} ORDER BY updateTime DESC - - select * FROM udi_relevance + select * + FROM udi_relevance AND uuid = #{uuid} @@ -85,50 +131,68 @@ replace INTO udi_relevance - ( - thirdId,thirdName,uuid,isUseDy,updateTime,batchNo,warehouseName - ) - values - ( - #{thirdId}, - #{thirdName}, - #{uuid}, - #{isUseDy}, - #{updateTime}, - #{batchNo}, - #{warehouseName} - ) + (thirdId, thirdName, uuid, isUseDy, updateTime, batchNo, warehouseName) + values (#{thirdId}, + #{thirdName}, + #{uuid}, + #{isUseDy}, + #{updateTime}, + #{batchNo}, + #{warehouseName}) - - DELETE FROM udi_relevance WHERE id = #{id} + DELETE + FROM udi_relevance + WHERE id = #{id} + - DELETE FROM udi_relevance WHERE id in + DELETE + FROM udi_relevance WHERE id in #{item} + - DELETE FROM udi_relevance WHERE uuid = #{uuid} + DELETE + FROM udi_relevance + WHERE uuid = #{uuid} UPDATE udi_relevance - thirdId=#{thirdId}, - thirdName=#{thirdName}, - uuid=#{uuid}, - isUseDy=#{isUseDy}, - updateTime=#{updateTime}, - batchNo=#{batchNo}, - warehouseName=#{warehouseName}, + + thirdId=#{thirdId}, + + + thirdName=#{thirdName}, + + + uuid=#{uuid}, + + + isUseDy=#{isUseDy}, + + + updateTime=#{updateTime}, + + + batchNo=#{batchNo}, + + + warehouseName=#{warehouseName}, + WHERE id = #{id} diff --git a/src/main/resources/mybatis/mapper/inout/UnitMaintainDao.xml b/src/main/resources/mybatis/mapper/inout/UnitMaintainDao.xml index a615b36..9c93908 100644 --- a/src/main/resources/mybatis/mapper/inout/UnitMaintainDao.xml +++ b/src/main/resources/mybatis/mapper/inout/UnitMaintainDao.xml @@ -2,10 +2,10 @@ - - replace INTO io_unit_maintain @@ -43,38 +42,86 @@ UPDATE io_unit_maintain - thirdId=#{thirdId}, - unitId=#{unitId}, - name=#{name}, - spell=#{spell}, - addr=#{addr}, - status=#{status}, - type=#{type}, - creditNo=#{creditNo}, - platformId=#{platformId}, - appid=#{appid}, - apiKey=#{apiKey}, - secretKey=#{secretKey}, - customerId=#{customerId}, - corpType=#{corpType}, - outType=#{outType}, - pinyinCode=#{pinyinCode}, - contact=#{contact}, - mobile=#{mobile}, - sourceAction=#{sourceAction}, - targetAction=#{targetAction}, - invCode=#{invCode}, - invSubCode=#{invSubCode}, + + thirdId=#{thirdId}, + + + unitId=#{unitId}, + + + name=#{name}, + + + spell=#{spell}, + + + addr=#{addr}, + + + status=#{status}, + + + type=#{type}, + + + creditNo=#{creditNo}, + + + platformId=#{platformId}, + + + appid=#{appid}, + + + apiKey=#{apiKey}, + + + secretKey=#{secretKey}, + + + customerId=#{customerId}, + + + corpType=#{corpType}, + + + outType=#{outType}, + + + pinyinCode=#{pinyinCode}, + + + contact=#{contact}, + + + mobile=#{mobile}, + + + sourceAction=#{sourceAction}, + + + targetAction=#{targetAction}, + + + invCode=#{invCode}, + + + invSubCode=#{invSubCode}, + WHERE id = #{id} - update io_unit_maintain set platformId = null where id = #{id} + update io_unit_maintain + set platformId = null + where id = #{id} + + + + + diff --git a/src/main/resources/mybatis/mapper/inout/WarehouseBussinessTypeDao.xml b/src/main/resources/mybatis/mapper/inout/WarehouseBussinessTypeDao.xml index 5e6cfbf..889a068 100644 --- a/src/main/resources/mybatis/mapper/inout/WarehouseBussinessTypeDao.xml +++ b/src/main/resources/mybatis/mapper/inout/WarehouseBussinessTypeDao.xml @@ -2,26 +2,21 @@ - - - id, code, `action`, `name` - delete from inv_warehouse_bussiness_type where id = #{id,jdbcType=INTEGER} @@ -34,7 +29,6 @@ - insert into inv_warehouse_bussiness_type @@ -61,7 +55,6 @@ - update inv_warehouse_bussiness_type @@ -77,7 +70,6 @@ where id = #{id,jdbcType=INTEGER} - update inv_warehouse_bussiness_type set code = #{code,jdbcType=VARCHAR}, `action` = #{action,jdbcType=VARCHAR}, @@ -85,7 +77,6 @@ where id = #{id,jdbcType=INTEGER} - update inv_warehouse_bussiness_type @@ -110,7 +101,6 @@ - update inv_warehouse_bussiness_type @@ -141,7 +131,6 @@ - insert into inv_warehouse_bussiness_type (code, `action`, `name`) values @@ -152,7 +141,6 @@ - insert into inv_warehouse_bussiness_type @@ -183,7 +171,6 @@ - insert into inv_warehouse_bussiness_type diff --git a/src/main/resources/mybatis/mapper/inout/WarehouseUserDao.xml b/src/main/resources/mybatis/mapper/inout/WarehouseUserDao.xml index dffb704..416fc9e 100644 --- a/src/main/resources/mybatis/mapper/inout/WarehouseUserDao.xml +++ b/src/main/resources/mybatis/mapper/inout/WarehouseUserDao.xml @@ -2,8 +2,6 @@ - - @@ -11,32 +9,30 @@ - - id, code, userId, userName, isDirector + id, + code, + userId, + userName, + isDirector - - delete from inv_warehouse_user + delete + from inv_warehouse_user where id = #{id,jdbcType=INTEGER} - - insert into inv_warehouse_user (code, userId, userName, isDirector - ) - values (#{code,jdbcType=VARCHAR}, #{userid,jdbcType=BIGINT}, #{username,jdbcType=VARCHAR}, #{isDirector} - ) + insert into inv_warehouse_user (code, userId, userName, isDirector) + values (#{code,jdbcType=VARCHAR}, #{userid,jdbcType=BIGINT}, #{username,jdbcType=VARCHAR}, #{isDirector}) - insert into inv_warehouse_user @@ -64,7 +60,6 @@ - update inv_warehouse_user @@ -81,16 +76,13 @@ where id = #{id,jdbcType=INTEGER} - update inv_warehouse_user - set code = #{code,jdbcType=VARCHAR}, - userId = #{userid,jdbcType=BIGINT}, - userName = #{username,jdbcType=VARCHAR} - isDirector = #{isDirector} + set code = #{code,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=BIGINT}, + userName = #{username,jdbcType=VARCHAR} isDirector = #{isDirector} where id = #{id,jdbcType=INTEGER} - update inv_warehouse_user @@ -115,7 +107,6 @@ - update inv_warehouse_user @@ -146,19 +137,16 @@ - insert into inv_warehouse_user - (code, userId, userName, isDirector) + (code, userId, userName, isDirector) values (#{item.code,jdbcType=VARCHAR}, #{item.userid,jdbcType=BIGINT}, #{item.username,jdbcType=VARCHAR}, - #{item.isDirector} - ) + #{item.isDirector}) - insert into inv_warehouse_user @@ -184,14 +172,13 @@ id = #{id,jdbcType=INTEGER}, - code = #{code,jdbcType=VARCHAR}, - userId = #{userid,jdbcType=BIGINT}, + code = #{code,jdbcType=VARCHAR}, + userId = #{userid,jdbcType=BIGINT}, userName = #{username,jdbcType=VARCHAR}, - insert into inv_warehouse_user @@ -242,7 +229,7 @@ @@ -270,6 +257,8 @@ \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/inventory/InvStockPrintDao.xml b/src/main/resources/mybatis/mapper/inventory/InvStockPrintDao.xml index 9d6e133..2ee4fbf 100644 --- a/src/main/resources/mybatis/mapper/inventory/InvStockPrintDao.xml +++ b/src/main/resources/mybatis/mapper/inventory/InvStockPrintDao.xml @@ -2,10 +2,10 @@ - - + replace - INTO inv_stockprint - ( - udiCode,udiRlIdFk,nameCode,cpmctymc,batchNo, - produceDate,expireDate,serialNo,codeType,thirdId,thirdName, - ggxh,ylqxzcrbarmc,zczbhhzbapzbh,warehouseName,warehouseCode,spaceCode,spaceName,genKeyFk,thirdSysFk - ,sOrderId,sDetailId,updateTime,count - ) - values - ( - #{udiCode}, - #{udiRlIdFk}, - #{nameCode}, - #{cpmctymc}, - #{batchNo}, - #{produceDate}, - #{expireDate}, - #{serialNo}, - #{codeType}, - #{thirdId}, - #{thirdName}, - #{ggxh}, - #{ylqxzcrbarmc}, - #{zczbhhzbapzbh}, - #{warehouseName}, - #{warehouseCode}, - #{spaceCode}, - #{spaceName}, - #{genKeyFk}, - #{thirdSysFk}, - #{sOrderId}, - #{sDetailId}, - #{updateTime}, - #{count} - ) + INTO inv_stockprint + (udiCode, udiRlIdFk, nameCode, cpmctymc, batchNo, + produceDate, expireDate, serialNo, codeType, thirdId, thirdName, + ggxh, ylqxzcrbarmc, zczbhhzbapzbh, warehouseName, warehouseCode, spaceCode, spaceName, genKeyFk, thirdSysFk + , sOrderId, sDetailId, updateTime, count) + values (#{udiCode}, + #{udiRlIdFk}, + #{nameCode}, + #{cpmctymc}, + #{batchNo}, + #{produceDate}, + #{expireDate}, + #{serialNo}, + #{codeType}, + #{thirdId}, + #{thirdName}, + #{ggxh}, + #{ylqxzcrbarmc}, + #{zczbhhzbapzbh}, + #{warehouseName}, + #{warehouseCode}, + #{spaceCode}, + #{spaceName}, + #{genKeyFk}, + #{thirdSysFk}, + #{sOrderId}, + #{sDetailId}, + #{updateTime}, + #{count}) replace INTO inv_stockprint - ( - udiCode,udiRlIdFk,nameCode,cpmctymc,batchNo, - produceDate,expireDate,serialNo,codeType,thirdId,thirdName, - ggxh,ylqxzcrbarmc,zczbhhzbapzbh,warehouseName,warehouseCode,spaceCode,spaceName,genKeyFk,thirdSysFk - ,sOrderId,sDetailId,updateTime,count - ) + (udiCode, udiRlIdFk, nameCode, cpmctymc, batchNo, + produceDate, expireDate, serialNo, codeType, thirdId, thirdName, + ggxh, ylqxzcrbarmc, zczbhhzbapzbh, warehouseName, warehouseCode, spaceCode, spaceName, genKeyFk, thirdSysFk + , sOrderId, sDetailId, updateTime, count) values - - ( - #{item.udiCode}, - #{item.udiRlIdFk}, - #{item.nameCode}, - #{item.cpmctymc}, - #{item.batchNo}, - #{item.produceDate}, - #{item.expireDate}, - #{item.serialNo}, - #{item.codeType}, - #{item.thirdId}, - #{item.thirdName}, - #{item.ggxh}, - #{item.ylqxzcrbarmc}, - #{item.zczbhhzbapzbh}, - #{item.warehouseName}, - #{item.warehouseCode},#{item.spaceCode},#{item.spaceName},#{item.genKeyFk},#{item.thirdSysFk} - ,#{item.sOrderId},#{item.sDetailId},#{item.updateTime},#{item.count} - ) + (#{item.udiCode}, + #{item.udiRlIdFk}, + #{item.nameCode}, + #{item.cpmctymc}, + #{item.batchNo}, + #{item.produceDate}, + #{item.expireDate}, + #{item.serialNo}, + #{item.codeType}, + #{item.thirdId}, + #{item.thirdName}, + #{item.ggxh}, + #{item.ylqxzcrbarmc}, + #{item.zczbhhzbapzbh}, + #{item.warehouseName}, + #{item.warehouseCode}, #{item.spaceCode}, #{item.spaceName}, #{item.genKeyFk}, #{item.thirdSysFk} + , #{item.sOrderId}, #{item.sDetailId}, #{item.updateTime}, #{item.count}) @@ -201,36 +198,79 @@ UPDATE inv_stockprint - udiCode=#{udiCode}, - udiRlIdFk=#{udiRlIdFk}, - nameCode=#{nameCode}, - cpmctymc=#{cpmctymc}, - batchNo=#{batchNo}, - produceDate=#{produceDate}, - expireDate=#{expireDate}, - serialNo=#{serialNo}, - codeType=#{codeType}, - thirdId=#{thirdId}, - thirdName=#{thirdName}, - printStatus=#{printStatus}, - ggxh=#{ggxh}, - ylqxzcrbarmc=#{ylqxzcrbarmc}, - zczbhhzbapzbh=#{zczbhhzbapzbh}, - warehouseName=#{warehouseName}, - warehouseCode=#{warehouseCode}, - spaceCode=#{spaceCode}, - spaceName=#{spaceName}, - genKeyFk=#{genKeyFk}, - sOrderId=#{sOrderId}, - sDetailId=#{sDetailId}, - `count`=#{count}, - - + + udiCode=#{udiCode}, + + + udiRlIdFk=#{udiRlIdFk}, + + + nameCode=#{nameCode}, + + + cpmctymc=#{cpmctymc}, + + + batchNo=#{batchNo}, + + + produceDate=#{produceDate}, + + + expireDate=#{expireDate}, + + + serialNo=#{serialNo}, + + + codeType=#{codeType}, + + + thirdId=#{thirdId}, + + + thirdName=#{thirdName}, + + + printStatus=#{printStatus}, + + + ggxh=#{ggxh}, + + + ylqxzcrbarmc=#{ylqxzcrbarmc}, + + + zczbhhzbapzbh=#{zczbhhzbapzbh}, + + + warehouseName=#{warehouseName}, + + + warehouseCode=#{warehouseCode}, + + + spaceCode=#{spaceCode}, + + + spaceName=#{spaceName}, + + + genKeyFk=#{genKeyFk}, + + + sOrderId=#{sOrderId}, + + + sDetailId=#{sDetailId}, + + + `count`=#{count}, + WHERE id = #{id} - update inv_stockprint set printStatus = 1 diff --git a/src/main/resources/mybatis/mapper/inventory/InvWarehouseDao.xml b/src/main/resources/mybatis/mapper/inventory/InvWarehouseDao.xml index 3fce091..319d227 100644 --- a/src/main/resources/mybatis/mapper/inventory/InvWarehouseDao.xml +++ b/src/main/resources/mybatis/mapper/inventory/InvWarehouseDao.xml @@ -2,49 +2,12 @@ - - - - + + replace INTO inv_warehouse @@ -169,39 +132,69 @@ UPDATE inv_warehouse - pid=#{pid}, - name=#{name}, - code=#{code}, - advanceType=#{advanceType}, - isDefault=#{isDefault}, - status=#{status}, - updateTime=#{updateTime}, - remark=#{remark}, - level=#{level}, - pcode=#{pcode}, - remark=#{thirdId}, - remark=#{thirdId1}, - remark=#{thirdId2}, - remark=#{thirdId3}, - remark=#{thirdId4}, + + pid=#{pid}, + + + name=#{name}, + + + code=#{code}, + + + advanceType=#{advanceType}, + + + isDefault=#{isDefault}, + + + status=#{status}, + + + updateTime=#{updateTime}, + + + remark=#{remark}, + + + level=#{level}, + + + pcode=#{pcode}, + + + remark=#{thirdId}, + + + remark=#{thirdId1}, + + + remark=#{thirdId2}, + + + remark=#{thirdId3}, + + + remark=#{thirdId4}, + WHERE id = #{id} replace into inv_warehouse (id, pId, code, name, advanceType, isDefault, status, - updateTime, remark, level, pcode) values + updateTime, remark, level, pcode) values (#{item.id}, - #{item.pid}, - #{item.code}, - #{item.name}, - #{item.advanceType}, - #{item.isDefault}, - #{item.status}, - #{item.updateTime}, - #{item.remark}, #{item.level}, - #{item.pcode}) + #{item.pid}, + #{item.code}, + #{item.name}, + #{item.advanceType}, + #{item.isDefault}, + #{item.status}, + #{item.updateTime}, + #{item.remark}, #{item.level}, + #{item.pcode}) @@ -212,10 +205,16 @@ \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/inventory/StockPrintTempDao.xml b/src/main/resources/mybatis/mapper/inventory/StockPrintTempDao.xml index 2e8ebcb..1656a80 100644 --- a/src/main/resources/mybatis/mapper/inventory/StockPrintTempDao.xml +++ b/src/main/resources/mybatis/mapper/inventory/StockPrintTempDao.xml @@ -2,25 +2,6 @@ - - - - insert INTO inv_stockprint_pdf_temp @@ -31,7 +12,6 @@ #{printCodeIdFk}, #{stockOrderFk}, #{genKey}) - DELETE FROM inv_stockprint_pdf_temp @@ -51,13 +31,22 @@ UPDATE inv_stockprint_pdf_temp - fileName=#{fileName}, - filePath=#{filePath}, - status=#{status}, - printCodeIdFk=#{printCodeIdFk}, - stockOrderFk=#{stockOrderFk}, + + fileName=#{fileName}, + + + filePath=#{filePath}, + + + status=#{status}, + + + printCodeIdFk=#{printCodeIdFk}, + + + stockOrderFk=#{stockOrderFk}, + WHERE genKey = #{genKey} - \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/param/SystemExcelTemplate.xml b/src/main/resources/mybatis/mapper/param/SystemExcelTemplate.xml index bf6bc44..b4f03e6 100644 --- a/src/main/resources/mybatis/mapper/param/SystemExcelTemplate.xml +++ b/src/main/resources/mybatis/mapper/param/SystemExcelTemplate.xml @@ -11,15 +11,18 @@ @@ -47,12 +50,11 @@ - INSERT INTO system_excel_template(name,filePath,remark,create_time,update_time) values - ( #{name}, - #{filePath}, - #{remark}, - #{create_time}, - #{update_time}) + INSERT INTO system_excel_template(name, filePath, remark, create_time, update_time) + values (#{name}, + #{filePath}, + #{remark}, + #{create_time}, + #{update_time}) - \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/param/SystemPDFModuleDao.xml b/src/main/resources/mybatis/mapper/param/SystemPDFModuleDao.xml index 61d9142..9d00a9b 100644 --- a/src/main/resources/mybatis/mapper/param/SystemPDFModuleDao.xml +++ b/src/main/resources/mybatis/mapper/param/SystemPDFModuleDao.xml @@ -2,19 +2,6 @@ - UPDATE system_pdf_module @@ -47,22 +34,19 @@ templateType=#{templateType}, - WHERE id=#{id} + WHERE id = #{id} - insert INTO - system_pdf_module(name,param,fieldExplain,remark,templateId,create_time,update_time,templateDlUrl,templateType - ) values - ( - #{name}, - #{param}, - #{fieldExplain}, - #{templateId}, - #{remark}, - #{create_time}, - #{update_time},#{templateDlUrl},#{templateType} - ) + insert INTO system_pdf_module(name, param, fieldExplain, remark, templateId, create_time, update_time, + templateDlUrl, templateType) + values (#{name}, + #{param}, + #{fieldExplain}, + #{templateId}, + #{remark}, + #{create_time}, + #{update_time}, #{templateDlUrl}, #{templateType}) + - \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/param/SystemPDFTemplateRelevanceDao.xml b/src/main/resources/mybatis/mapper/param/SystemPDFTemplateRelevanceDao.xml index b97d313..dbd6781 100644 --- a/src/main/resources/mybatis/mapper/param/SystemPDFTemplateRelevanceDao.xml +++ b/src/main/resources/mybatis/mapper/param/SystemPDFTemplateRelevanceDao.xml @@ -10,17 +10,20 @@ - select basic_bussiness_type.`name` localActionName,system_pdf_template_relevance.id, - basic_bussiness_type.action localAction, - templateId, - moduleId, - system_pdf_template_relevance.remark1, system_pdf_template_relevance.remark2,system_pdf_template_relevance.remark3, - system_pdf_template.name templateName + select basic_bussiness_type.`name` localActionName, + system_pdf_template_relevance.id, + basic_bussiness_type.action localAction, + templateId, + moduleId, + system_pdf_template_relevance.remark1, + system_pdf_template_relevance.remark2, + system_pdf_template_relevance.remark3, + system_pdf_template.name templateName from basic_bussiness_type - LEFT JOIN system_pdf_template_relevance - on basic_bussiness_type.action = system_pdf_template_relevance.localAction - LEFT JOIN system_pdf_template - on system_pdf_template_relevance.templateId = system_pdf_template.id + LEFT JOIN system_pdf_template_relevance + on basic_bussiness_type.action = system_pdf_template_relevance.localAction + LEFT JOIN system_pdf_template + on system_pdf_template_relevance.templateId = system_pdf_template.id AND system_pdf_template_relevance.`moduleId` = #{moduleId} @@ -77,7 +83,7 @@ INSERT INTO system_pdf_template_relevance - (templateId, customerId) + (templateId, customerId) VALUES @@ -88,16 +94,14 @@ insert - ignore + ignore INTO system_pdf_template_relevance - (templateId, customerId, adminId, moduleId, localAction) - values ( - #{templateId}, - #{customerId}, - #{adminId}, - #{moduleId}, - #{localAction} - ) + (templateId, customerId, adminId, moduleId, localAction) + values (#{templateId}, + #{customerId}, + #{adminId}, + #{moduleId}, + #{localAction}) @@ -127,9 +131,7 @@ remark3=#{remark3}, - WHERE id = #{id} - \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/param/SystemParamConfigCustomerDao.xml b/src/main/resources/mybatis/mapper/param/SystemParamConfigCustomerDao.xml index b092be4..8f5c782 100644 --- a/src/main/resources/mybatis/mapper/param/SystemParamConfigCustomerDao.xml +++ b/src/main/resources/mybatis/mapper/param/SystemParamConfigCustomerDao.xml @@ -1,141 +1,161 @@ - + + + + + + + + + + + + - - - - - - - - - - - - - id, parentId, paramName, paramKey, paramValue, paramStatus, paramType, paramExplain, - customerId - - - - insert into system_param_config_customer - - + + id, parentId, - - paramName, - - paramKey, - - paramValue, - - paramStatus, - - paramType, - - paramExplain, - - - customerId, - - - - - #{parentId,jdbcType=INTEGER}, - - - #{paramName,jdbcType=VARCHAR}, - - - #{paramKey,jdbcType=VARCHAR}, - - - #{paramValue,jdbcType=VARCHAR}, - - - #{paramStatus,jdbcType=INTEGER}, - - - #{paramType,jdbcType=INTEGER}, - - - #{paramExplain,jdbcType=VARCHAR}, - - - #{customerId,jdbcType=VARCHAR}, - - - - - update system_param_config_customer - - - parentId = #{parentId,jdbcType=INTEGER}, - - - paramName = #{paramName,jdbcType=VARCHAR}, - - - paramKey = #{paramKey,jdbcType=VARCHAR}, - - - paramValue = #{paramValue,jdbcType=VARCHAR}, - - - paramStatus = #{paramStatus,jdbcType=INTEGER}, - - - paramType = #{paramType,jdbcType=INTEGER}, - - - paramExplain = #{paramExplain,jdbcType=VARCHAR}, - - - customerId = #{customerId,jdbcType=VARCHAR}, - - - where id = #{id,jdbcType=INTEGER} - - - update system_param_config_customer - set parentId = #{parentId,jdbcType=INTEGER}, - paramName = #{paramName,jdbcType=VARCHAR}, - paramKey = #{paramKey,jdbcType=VARCHAR}, - paramValue = #{paramValue,jdbcType=VARCHAR}, - paramStatus = #{paramStatus,jdbcType=INTEGER}, - paramType = #{paramType,jdbcType=INTEGER}, - paramExplain = #{paramExplain,jdbcType=VARCHAR}, - customerId = #{customerId,jdbcType=VARCHAR} - where id = #{id,jdbcType=INTEGER} - + customerId + - + + + + insert into system_param_config_customer + + + parentId, + + + paramName, + + + paramKey, + + + paramValue, + + + paramStatus, + + + paramType, + + + paramExplain, + + + customerId, + + + + + #{parentId,jdbcType=INTEGER}, + + + #{paramName,jdbcType=VARCHAR}, + + + #{paramKey,jdbcType=VARCHAR}, + + + #{paramValue,jdbcType=VARCHAR}, + + + #{paramStatus,jdbcType=INTEGER}, + + + #{paramType,jdbcType=INTEGER}, + + + #{paramExplain,jdbcType=VARCHAR}, + + + #{customerId,jdbcType=VARCHAR}, + + + + + + update system_param_config_customer + + + parentId = #{parentId,jdbcType=INTEGER}, + + + paramName = #{paramName,jdbcType=VARCHAR}, + + + paramKey = #{paramKey,jdbcType=VARCHAR}, + + + paramValue = #{paramValue,jdbcType=VARCHAR}, + + + paramStatus = #{paramStatus,jdbcType=INTEGER}, + + + paramType = #{paramType,jdbcType=INTEGER}, + + + paramExplain = #{paramExplain,jdbcType=VARCHAR}, + + + customerId = #{customerId,jdbcType=VARCHAR}, + + + where id = #{id,jdbcType=INTEGER} + + + + update system_param_config_customer + set parentId = #{parentId,jdbcType=INTEGER}, + paramName = #{paramName,jdbcType=VARCHAR}, + paramKey = #{paramKey,jdbcType=VARCHAR}, + paramValue = #{paramValue,jdbcType=VARCHAR}, + paramStatus = #{paramStatus,jdbcType=INTEGER}, + paramType = #{paramType,jdbcType=INTEGER}, + paramExplain = #{paramExplain,jdbcType=VARCHAR}, + customerId = #{customerId,jdbcType=VARCHAR} + where id = #{id,jdbcType=INTEGER} + - + + + - + select * + from system_param_config_customer + where paramKey = #{paramKey} + and customerId = #{customerId} \ No newline at end of file diff --git a/src/main/resources/mybatis/mapper/param/SystemParamConfigDao.xml b/src/main/resources/mybatis/mapper/param/SystemParamConfigDao.xml index 7891dbc..9424790 100644 --- a/src/main/resources/mybatis/mapper/param/SystemParamConfigDao.xml +++ b/src/main/resources/mybatis/mapper/param/SystemParamConfigDao.xml @@ -2,16 +2,18 @@ - - @@ -21,25 +23,23 @@ paramStatus=#{paramStatus}, - WHERE parentId=#{parentId} + WHERE parentId = #{parentId} insert INTO system_param_config(paramName, - paramKey,paramValue,paramStatus,paramType,paramExplain - ) values - ( - #{paramName}, - #{paramKey}, - #{paramValue}, - #{paramStatus}, - #{paramType}, - #{paramExplain} - ) + paramKey, paramValue, paramStatus, paramType, paramExplain) + values (#{paramName}, + #{paramKey}, + #{paramValue}, + #{paramStatus}, + #{paramType}, + #{paramExplain})