1.重写部分分页查询代码,修改查询语句错误问题

2.格式化xml代码,增加代码可读性
master
x_z 3 years ago
parent abf4724d7d
commit 5f3948c732

@ -134,7 +134,7 @@ public class AuthAdminController {
AuthAdmin authAdmin = authAdminService.getCurrentUser();
List<AuthRole> authRoles = authRoleAdminService.listAdminRole(authAdmin.getId());
List<AuthRole> authRoleList;
Page<AuthRole> pageResult = new Page<>();
IPage<AuthRole> 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<AuthRole> authRolePage = authRoleService.listCustomerRoles(page, limit, 1);
IPage<AuthRole> authRolePage = authRoleService.listCustomerRoles(page, limit, 1);
PageSimpleResponse<AuthAdminRoleResponse> pageSimpleResponse = new PageSimpleResponse<>();
pageSimpleResponse.setTotal(authRolePage.getTotal());
List<AuthAdminRoleResponse> 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<AuthRole> authRolePage = authRoleService.listCustomerRoles(authAdminQueryRequest.getPage(), authAdminQueryRequest.getLimit(), isCustomer);
IPage<AuthRole> authRolePage = authRoleService.listCustomerRoles(authAdminQueryRequest.getPage(), authAdminQueryRequest.getLimit(), isCustomer);
PageSimpleResponse<AuthAdminRoleResponse> pageSimpleResponse = new PageSimpleResponse<>();
pageSimpleResponse.setTotal(authRolePage.getTotal());
List<AuthAdminRoleResponse> 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<AuthRole> authRolePage = authRoleService.listCustomerRoles(authAdminQueryRequest.getPage(), authAdminQueryRequest.getLimit(), 0);
IPage<AuthRole> authRolePage = authRoleService.listCustomerRoles(authAdminQueryRequest.getPage(), authAdminQueryRequest.getLimit(), 0);
PageSimpleResponse<AuthAdminRoleResponse> pageSimpleResponse = new PageSimpleResponse<>();
pageSimpleResponse.setTotal(authRolePage.getTotal());
List<AuthAdminRoleResponse> authAdminRoleResponses = authRolePage.getRecords().stream().map(e -> {

@ -278,7 +278,7 @@ public class StockQRCodeTextController {
if (bindingResult.hasErrors()) {
return ResultVOUtils.error(ResultEnum.PARAM_VERIFY_FALL, bindingResult.getFieldError().getDefaultMessage());
}
Page<StockPrintTempEntity> page = stockPrintTempService.filterStockPrintTempEntity(filterStPrintTempRequest);
IPage<StockPrintTempEntity> page = stockPrintTempService.filterStockPrintTempEntity(filterStPrintTempRequest);
PageSimpleResponse<StockPrintTempEntity> pageSimpleResponse = new PageSimpleResponse<>();
pageSimpleResponse.setTotal(page.getTotal());
pageSimpleResponse.setList(page.getRecords());

@ -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<UnitMaintainEntity> page = unitMaintainService.getUnbindUnitMaintain(unitMaintainFilterRequest);
IPage<UnitMaintainEntity> page = unitMaintainService.getUnbindUnitMaintain(unitMaintainFilterRequest);
PageSimpleResponse<UnitMaintainEntity> pageSimpleResponse = new PageSimpleResponse<>();
pageSimpleResponse.setTotal(page.getTotal());

@ -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<AuthRole> {
*/
Page<AuthRole> listAuthAdminRolePage(Page<AuthRole> page, @Param("status") Integer status);
Page<AuthRole> listCustomerRoles(Page<AuthRole> page, Integer isCustomer);
IPage<AuthRole> listCustomerRoles(IPage<AuthRole> page, @Param("isCustomer") Integer isCustomer);
List<AuthRole> listAuthRoles2();

@ -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<CustomerContactEntity> {
Page<CustomerContactEntity> filterCustomerContact(Page<CustomerContactEntity> page, CustomerContactFilterRequest userResisterFilterRequest);
boolean insertCustomerContact(CustomerContactEntity customerContactEntity);
boolean updateCustomerContact(CustomerContactEntity customerContactEntity);

@ -28,5 +28,5 @@ public interface CustomerInfoDao extends BaseMapper<CustomerInfoEntity> {
*/
List<String> selectCustomerIdByCustomerName(@Param("customerName") String customerName);
IPage<CustomerDetailEntity> filterDetailCustomerInfo(IPage<CustomerDetailEntity> page, String key, String customerName, String companyName, Integer userFlag, Integer bussinessStatus);
IPage<CustomerDetailEntity> filterDetailCustomerInfo(@Param("page") IPage<CustomerDetailEntity> page, @Param("key") String key, @Param("customerName") String customerName, @Param("companyName") String companyName, @Param("userFlag") Integer userFlag, @Param("bussinessStatus") Integer bussinessStatus);
}

@ -17,5 +17,4 @@ public interface UserRegisterDao extends BaseMapper<UserRegisterEntity> {
boolean deleteByCustomerId(Long id);
String isExit(String phoneNum);
}

@ -12,7 +12,7 @@ import java.util.List;
@Mapper
public interface BussinessTypeDao extends BaseMapper<BussinessTypeEntity> {
IPage<BussinessTypeEntity> filterAllByUser(IPage<BussinessTypeEntity> page, String name, String action, String mainAction, String locInvCode, String customerId, Boolean enabled);
IPage<BussinessTypeEntity> filterAllByUser(@Param("page") IPage<BussinessTypeEntity> 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<BussinessTypeEntity> filterAllByUserList(BussinessTypeFilterRequest bussinessTypeFilterRequest);

@ -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> {
CompanyEntity findCompanyByName(String companyName);
Page<CompanyEntity> getSubCompany(Page<CompanyEntity> page, FilterCompanyRequest companyRequest);
List<CompanyEntity> filterCompany(FilterCompanyRequest companyRequest);
boolean modifyCompany(CompanyEntity companyEntity);
@ -28,7 +24,5 @@ public interface CompanyDao extends BaseMapper<CompanyEntity> {
boolean deleteCompany(Long customerId);
AliKeyEntity findKey(String customerId);
String findCompanyName(@Param("customerId") long customerId);
}

@ -15,7 +15,7 @@ public interface StockQRCodeTextDao extends BaseMapper<StockQRCodeTextEntity> {
boolean insertStockQRCodeText(StockQRCodeTextEntity stockQRCodeTextEntity);
boolean insertStockQRCodeTexts(@Param("StockQRCodeTextEntities") List<StockQRCodeTextEntity> StockQRCodeTextEntitys);
boolean insertStockQRCodeTexts(@Param("stockQRCodeTextEntities") List<StockQRCodeTextEntity> stockQRCodeTextEntities);
boolean deleteByOrderId(@Param("id") String id);

@ -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<UdiRelevanceEntity> {
Page<UdiRelevanceResponse> filterUdiRelevance(Page<UdiRelevanceResponse> page, FilterUdiInfoRequest filterUdiInfoRequest);
/**
* UDI
*
* @param page
* @param ylqxzcrbarmc
* @param cpmctymc
* @param nameCode DI
* @param thirdId ID
* @param uuid uuid
* @return
*/
Page<UdiRelevanceResponse> filterUdiRelevance(@Param("page") IPage<UdiRelevanceResponse> page, @Param("ylqxzcrbarmc") String ylqxzcrbarmc, @Param("cpmctymc") String cpmctymc, @Param("nameCode") String nameCode, @Param("thirdId") String thirdId, @Param("uuid") String uuid);
List<UdiRelevanceResponse> filterUdiGp(FilterUdiInfoRequest filterUdiInfoRequest);

@ -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<UnitMaintainEntity> {
/**
*
*
* @param page
* @param customerId
* @return
*/
Page<UnitMaintainEntity> getUnbindUnitMaintain(Page<UnitMaintainEntity> page, String customerId);
IPage<UnitMaintainEntity> getUnbindUnitMaintain(IPage<UnitMaintainEntity> page, @Param("customerId") String customerId);
/**
* ID
@ -74,5 +74,5 @@ public interface UnitMaintainDao extends BaseMapper<UnitMaintainEntity> {
*/
int countByName(@Param("name") String name, @Param("customerId") String customerId);
IPage<UnitMaintainEntity> filterList(IPage<UnitMaintainEntity> page, String key, String customerId, Integer corpType);
IPage<UnitMaintainEntity> filterList(@Param("page") IPage<UnitMaintainEntity> page, @Param("key") String key, @Param("customerId") String customerId, @Param("corpType") Integer corpType);
}

@ -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<InvWarehouseEntity> {
IPage<InvWarehouseEntity> filterInvWarehouse(@Param("page") IPage<InvWarehouseEntity> page, @Param("request") FilterInvWarehouseRequest request);
List<InvWarehouseEntity> filterAllByUser(FilterInvWarehouseRequest filterInvWarehouseRequest);
InvWarehouseEntity selectMaxCode(FilterInvWarehouseRequest filterInvWarehouseRequest);

@ -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<StockPrintTempEntity> {
Page<StockPrintTempEntity> filterStockPrintTempEntity(Page<StockPrintTempEntity> page, FilterStPrintTempRequest filterStockprintRequest);
boolean delete(DeleteStPrintTempRequest deleteStPrintTempRequest);
boolean insertStockPrintTempEntity(StockPrintTempEntity stockPrintEntity);

@ -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<SystemPDFModuleEntity> {
Page<SystemPDFModuleEntity> queryPage(Page<SystemPDFModuleEntity> page, SystemPDFModuleRequest systemPDFModuleRequest);
Page<SystemPDFModuleEntity> listPDFModules(Page<SystemPDFModuleEntity> page);
boolean updateById(SystemPDFModuleSaveRequest systemPDFModuleSaveRequest);

@ -90,11 +90,11 @@ public class AuthRoleService {
return authRoleDao.updateAuthRole(authRole);
}
public Page<AuthRole> listCustomerRoles(Integer page, Integer limit, Integer isCustomer) {
public IPage<AuthRole> listCustomerRoles(Integer page, Integer limit, Integer isCustomer) {
if (null == page || null == limit) {
return new Page<>();
}
Page<AuthRole> pageParam = new Page<>(page, limit);
IPage<AuthRole> pageParam = new Page<>(page, limit);
return authRoleDao.listCustomerRoles(pageParam, isCustomer);
}

@ -24,7 +24,9 @@ public class CustomerContactService {
return new Page<>();
}
Page<CustomerContactEntity> page = new Page<>(customerContactFilterRequest.getPage(), customerContactFilterRequest.getLimit());
return customerContacDao.filterCustomerContact(page,customerContactFilterRequest);
QueryWrapper<CustomerContactEntity> wrapper = new QueryWrapper<>();
wrapper.eq(null != customerContactFilterRequest.getCustomerId(),"customerId", customerContactFilterRequest.getCustomerId());
return customerContacDao.selectPage(page, wrapper);
}
public boolean insertCustomerContact(CustomerContactEntity customerContactEntity) {

@ -53,12 +53,13 @@ public class UserRegisterService {
}
public boolean isExit(String phoneNum) {
String data = userRegisterDao.isExit(phoneNum);
if (data != null) {
QueryWrapper<UserRegisterEntity> 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) {

@ -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<CompanyEntity> page = new Page<>(commitRequest.getPage(), commitRequest.getLimit());
return companyDao.getSubCompany(page, commitRequest);
QueryWrapper<CompanyEntity> 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) {

@ -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<UdiRelevanceResponse> filterUdiRelevance(FilterUdiInfoRequest filterUdiInfoRequest) {
public IPage<UdiRelevanceResponse> filterUdiRelevance(FilterUdiInfoRequest filterUdiInfoRequest) {
if (filterUdiInfoRequest == null) {
return new Page<>();
}
Page<UdiRelevanceResponse> page = new Page<>(-1, -1);
IPage<UdiRelevanceResponse> 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<UdiRelevanceResponse> page = filterUdiRelevance(filterUdiInfoRequest);
IPage<UdiRelevanceResponse> page = filterUdiRelevance(filterUdiInfoRequest);
if (page.getTotal() > 0) {
return page.getRecords().get(0);
}
@ -66,7 +67,7 @@ public class UdiRelevanceService {
public List<UdiRelevanceResponse> selectByMainId(String mainId) {
FilterUdiInfoRequest filterUdiInfoRequest = new FilterUdiInfoRequest();
filterUdiInfoRequest.setMainId(mainId);
Page<UdiRelevanceResponse> page = filterUdiRelevance(filterUdiInfoRequest);
IPage<UdiRelevanceResponse> page = filterUdiRelevance(filterUdiInfoRequest);
return page.getRecords();
}

@ -59,11 +59,11 @@ public class UnitMaintainService {
return unitMaintainDao.selectByName(name);
}
public Page<UnitMaintainEntity> getUnbindUnitMaintain(UnitMaintainFilterRequest unitMaintainFilterRequest) {
public IPage<UnitMaintainEntity> getUnbindUnitMaintain(UnitMaintainFilterRequest unitMaintainFilterRequest) {
if (unitMaintainFilterRequest == null) {
return new Page<>();
}
Page<UnitMaintainEntity> page = new Page<>(unitMaintainFilterRequest.getPage(), unitMaintainFilterRequest.getLimit());
IPage<UnitMaintainEntity> page = new Page<>(unitMaintainFilterRequest.getPage(), unitMaintainFilterRequest.getLimit());
return unitMaintainDao.getUnbindUnitMaintain(page, unitMaintainFilterRequest.getCustomerId());
}

@ -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<StockPrintTempEntity> filterStockPrintTempEntity(FilterStPrintTempRequest filterStockprintRequest) {
public IPage<StockPrintTempEntity> filterStockPrintTempEntity(FilterStPrintTempRequest filterStockprintRequest) {
if (filterStockprintRequest == null) {
return new Page<>();
}
Page<StockPrintTempEntity> 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<StockPrintTempEntity> page = new Page<>(filterStockprintRequest.getPage(), filterStockprintRequest.getLimit());
QueryWrapper<StockPrintTempEntity> 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) {

@ -2,16 +2,15 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.auth.AuthAdminDao">
<select id="findByUserName" parameterType="hashmap" resultType="com.glxp.udi.admin.entity.auth.AuthAdmin">
SELECT *
FROM auth_user
<where>
userName = #{userName}
</where>
LIMIT 1
</select>
<select id="findCountByCustomerId" parameterType="java.lang.Long" resultType="java.lang.Integer">
SELECT count(0)
FROM auth_user
@ -27,7 +26,6 @@
AND CustomerId = #{CustomerId}
</if>
</where>
LIMIT 1
</select>
@ -41,7 +39,8 @@
</select>
<insert id="insertAuthAdmin" keyProperty="id" parameterType="com.glxp.udi.admin.entity.auth.AuthAdmin">
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},
<choose>
@ -53,7 +52,6 @@
</otherwise>
</choose>
<choose>
<when test="lastLoginIp != null">
#{lastLoginIp},
@ -101,7 +99,7 @@
comments = #{comments},
</if>
</set>
WHERE id=#{id}
WHERE id = #{id}
</update>
<delete id="deleteByCustomerId" parameterType="java.lang.Long">
@ -111,13 +109,20 @@
</delete>
<select id="getUserList" resultType="com.glxp.udi.admin.entity.auth.AuthAdmin">
select * from auth_user where CustomerId = #{customerId}
select *
from auth_user
where CustomerId = #{customerId}
</select>
<select id="selectIdsByCustomerId" resultType="java.lang.Long">
select id from auth_user where CustomerId = #{customerId}
select id
from auth_user
where CustomerId = #{customerId}
</select>
<select id="findCustomerIdById" resultType="java.lang.String">
select customerId from auth_user where id = #{userId}
select customerId
from auth_user
where id = #{userId}
</select>
</mapper>

@ -2,7 +2,6 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.auth.AuthLicenseDao">
<delete id="romveByCustomerId">
delete
from auth_license
@ -10,7 +9,9 @@
</delete>
<select id="selectLicenseByName" resultType="com.glxp.udi.admin.entity.auth.AuthLicense">
select apikey, secretkey from auth_license where name = #{name}
select apikey, secretkey
from auth_license
where name = #{name}
</select>
<update id="updateLicenseByName">

@ -17,10 +17,9 @@
where roleId = #{roleId}
</select>
<insert id="insertAuthPermissionAll">
INSERT INTO auth_permission
(roleId, permissionRuleId,`type`)
(roleId, permissionRuleId, `type`)
VALUES
<foreach collection="list" item="item" separator=",">
<if test="item.roleId != null and item.permissionRuleId != null and item.type != null">
@ -29,8 +28,10 @@
</foreach>
</insert>
<delete id="deleteByRoleId" parameterType="java.lang.Long">
delete from auth_permission where roleId = #{roleId}
delete
from auth_permission
where roleId = #{roleId}
</delete>
</mapper>

@ -12,7 +12,7 @@
</select>
<select id="listByPid" resultType="com.glxp.udi.admin.entity.auth.AuthPermissionRule">
SELECT `id`,`pid`,`name`,`title`,`status`,`condition`,`listorder`
SELECT `id`, `pid`, `name`, `title`, `status`, `condition`, `listorder`
FROM auth_permission_rule
where pid = #{pid}
</select>
@ -36,12 +36,13 @@
<insert id="insertAuthPermissionRule" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.auth.AuthPermissionRule">
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},
<choose>
<when test="condition != null">
#{condition},
@ -80,7 +81,7 @@
update_time=#{updateTime},
</if>
</set>
WHERE id=#{id}
WHERE id = #{id}
</update>
</mapper>

@ -9,7 +9,9 @@
</select>
<select id="listAdminRole" resultType="com.glxp.udi.admin.entity.auth.AuthRole">
select * from auth_role INNER JOIN auth_role_admin on auth_role.id = auth_role_admin.role_id
select *
from auth_role
INNER JOIN auth_role_admin on auth_role.id = auth_role_admin.role_id
WHERE auth_role_admin.admin_id = #{adminId};
</select>
@ -30,7 +32,7 @@
<insert id="insertAuthRoleAdminAll">
INSERT INTO auth_role_admin
(role_id, admin_id)
(role_id, admin_id)
VALUES
<foreach collection="list" item="item" separator=",">
<if test="item.role_id != null and item.admin_id != null">
@ -40,7 +42,9 @@
</insert>
<delete id="deleteByAdminId" parameterType="java.lang.Long">
delete from auth_role_admin where admin_id = #{adminId}
delete
from auth_role_admin
where admin_id = #{adminId}
</delete>
<select id="selectIsCustomer" resultType="java.lang.Integer">
@ -48,11 +52,17 @@
from auth_role
where id = (select role_id from auth_role_admin where admin_id = #{adminId} limit 1)
</select>
<select id="findNameById" resultType="java.lang.String">
select name from auth_role where id = #{roleId}
select name
from auth_role
where id = #{roleId}
</select>
<update id="updateRoleIdByAdminId">
update auth_role_admin set role_id = #{roleId} where admin_id = #{adminId}
update auth_role_admin
set role_id = #{roleId}
where admin_id = #{adminId}
</update>
</mapper>

@ -4,20 +4,20 @@
<mapper namespace="com.glxp.udi.admin.dao.auth.AuthRoleDao">
<select id="listAdminPage" parameterType="com.glxp.udi.admin.req.auth.AuthRoleQueryRequest"
resultType="com.glxp.udi.admin.entity.auth.AuthRole">
SELECT id,name,status,remark,create_time,listorder,isCustomer
SELECT id, name, status, remark, create_time, listorder, isCustomer
FROM auth_role
<where>
<if test="status != null">
AND status = #{status}
</if>
<if test="name != null and '' != name">
AND `name` LIKE CONCAT(#{name},'%')
AND `name` LIKE CONCAT(#{name}, '%')
</if>
</where>
</select>
<select id="listAuthAdminRolePage" resultType="com.glxp.udi.admin.entity.auth.AuthRole">
SELECT id,name
SELECT id, name
FROM auth_role
<where>
<if test="status != null">
@ -32,26 +32,22 @@
where `name` = #{name}
</select>
<select id="listCustomerRoles" parameterType="java.lang.Integer"
resultType="com.glxp.udi.admin.entity.auth.AuthRole">
SELECT id,name
SELECT id, name
FROM auth_role
where `isCustomer` = #{isCustomer}
</select>
<select id="listAuthRoles2" parameterType="java.lang.Integer" resultType="com.glxp.udi.admin.entity.auth.AuthRole">
SELECT id, name
FROM auth_role
</select>
<insert id="insertAuthRole" keyProperty="id" parameterType="com.glxp.udi.admin.entity.auth.AuthRole">
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},
<choose>
<when test="pid != null">
#{pid},
@ -79,8 +75,7 @@
</choose>
#{createTime},
#{updateTime},
#{isCustomer}
)
#{isCustomer})
</insert>
<update id="updateAuthRole" parameterType="com.glxp.udi.admin.entity.auth.AuthRole">
@ -108,7 +103,6 @@
isCustomer=#{isCustomer},
</if>
</set>
WHERE id=#{id}
WHERE id = #{id}
</update>
</mapper>

@ -2,32 +2,16 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.auth.CustomerContacDao">
<select id="filterCustomerContact" parameterType="com.glxp.udi.admin.req.auth.CustomerContactFilterRequest"
resultType="com.glxp.udi.admin.entity.auth.CustomerContactEntity">
SELECT *
FROM customer_contact
<where>
<if test="customerId != null and '' != customerId">
AND customerId = #{customerId}
</if>
</where>
</select>
<insert id="insertCustomerContact" keyProperty="customerId"
parameterType="com.glxp.udi.admin.entity.auth.CustomerInfoEntity">
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})
</insert>
<update id="updateCustomerContact" parameterType="com.glxp.udi.admin.entity.auth.CustomerContactEntity">
@ -49,7 +33,6 @@
comments=#{comments},
</if>
</set>
WHERE customerId=#{customerId}
WHERE customerId = #{customerId}
</update>
</mapper>

@ -2,15 +2,26 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.auth.CustomerInfoDao">
<select id="filterDetailCustomerInfo" parameterType="com.glxp.udi.admin.req.auth.CustomerInfoFilterRequest"
resultType="com.glxp.udi.admin.entity.auth.CustomerDetailEntity">
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
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
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>
<if test="key != null and key != ''">
AND (companyName like concat('%', #{key}, '%')
@ -19,10 +30,10 @@
or detailAddr like concat('%', #{key}, '%'))
</if>
<if test="customerName != null and '' != customerName">
AND customer_info.customerName LIKE concat('%',#{customerName},'%')
AND customer_info.customerName LIKE concat('%', #{customerName}, '%')
</if>
<if test="companyName != null and '' != companyName">
AND customer_info.companyName LIKE concat('%',#{companyName},'%')
AND customer_info.companyName LIKE concat('%', #{companyName}, '%')
</if>
<if test="userFlag != null">
AND customer_info.userFlag = #{userFlag}
@ -36,23 +47,23 @@
<select id="selectDetail" parameterType="java.lang.Long"
resultType="com.glxp.udi.admin.entity.auth.CustomerDetailEntity">
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}
</select>
@ -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})
</insert>
<update id="updateCustomerInfo" parameterType="com.glxp.udi.admin.entity.auth.CustomerInfoEntity">
@ -108,10 +119,9 @@
companyName=#{companyName},
</if>
</set>
WHERE customerId=#{customerId}
WHERE customerId = #{customerId}
</update>
<delete id="deleteById" parameterType="java.lang.Long">
delete
from customer_info
@ -119,6 +129,8 @@
</delete>
<select id="selectCustomerIdByCustomerName" resultType="java.lang.String">
select customerId from customer_info where companyName like concat('%',#{customerName},'%')
select customerId
from customer_info
where companyName like concat('%', #{customerName}, '%')
</select>
</mapper>

@ -2,11 +2,10 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.auth.DeviceKeyDao">
<select id="findDeviceKey" parameterType="com.glxp.udi.admin.req.info.FilterDeviceKeyRequest"
resultType="com.glxp.udi.admin.entity.info.DeviceKeyEntity">
SELECT * FROM device_check
SELECT *
FROM device_check
<where>
<if test="imei != null and imei != ''">
and imei = #{imei}
@ -19,7 +18,8 @@
<select id="findDeviceByImei" parameterType="com.glxp.udi.admin.req.info.FilterDeviceKeyRequest"
resultType="com.glxp.udi.admin.entity.info.DeviceKeyEntity">
SELECT * FROM device_check
SELECT *
FROM device_check
<where>
<if test="imei != null and imei != ''">
and imei = #{imei}
@ -31,62 +31,107 @@
<update id="updateDeviceKey" parameterType="com.glxp.udi.admin.entity.info.DeviceKeyEntity">
UPDATE device_check
<set>
<if test="isCheck != null">isCheck=#{isCheck},</if>
<if test="companyName != null">companyName=#{companyName},</if>
<if test="phone != null">phone=#{phone},</if>
<if test="contact != null">contact=#{contact},</if>
<if test="imeiKey != null">imeiKey=#{imeiKey},</if>
<if test="date != null">date=#{date},</if>
<if test="creditNum != null">creditNum=#{creditNum},</if>
<if test="rgType != null">rgType=#{rgType},</if>
<if test="remark != null">remark=#{remark},</if>
<if test="customerId != null and customerId != ''">customerId=#{customerId},</if>
<if test="applicant != null and applicant != ''">applicant=#{applicant},</if>
<if test="isCheck != null">
isCheck=#{isCheck},
</if>
<if test="companyName != null">
companyName=#{companyName},
</if>
<if test="phone != null">
phone=#{phone},
</if>
<if test="contact != null">
contact=#{contact},
</if>
<if test="imeiKey != null">
imeiKey=#{imeiKey},
</if>
<if test="date != null">
date=#{date},
</if>
<if test="creditNum != null">
creditNum=#{creditNum},
</if>
<if test="rgType != null">
rgType=#{rgType},
</if>
<if test="remark != null">
remark=#{remark},
</if>
<if test="customerId != null and customerId != ''">
customerId=#{customerId},
</if>
<if test="applicant != null and applicant != ''">
applicant=#{applicant},
</if>
</set>
WHERE id=#{id}
WHERE id = #{id}
</update>
<update id="updateDeviceKeyByImei" parameterType="com.glxp.udi.admin.entity.info.DeviceKeyEntity">
UPDATE device_check
<set>
<if test="isCheck != null">isCheck=#{isCheck},</if>
<if test="companyName != null">companyName=#{companyName},</if>
<if test="phone != null">phone=#{phone},</if>
<if test="contact != null">contact=#{contact},</if>
<if test="imeiKey != null">imeiKey=#{imeiKey},</if>
<if test="date != null">date=#{date},</if>
<if test="imei != null">imei=#{imei},</if>
<if test="creditNum != null">creditNum=#{creditNum},</if>
<if test="rgType != null">rgType=#{rgType},</if>
<if test="remark != null">remark=#{remark},</if>
<if test="customerId != null and customerId != ''">customerId=#{customerId}</if>
<if test="applicant != null and applicant != ''">applicant=#{applicant}</if>
<if test="isCheck != null">
isCheck=#{isCheck},
</if>
<if test="companyName != null">
companyName=#{companyName},
</if>
<if test="phone != null">
phone=#{phone},
</if>
<if test="contact != null">
contact=#{contact},
</if>
<if test="imeiKey != null">
imeiKey=#{imeiKey},
</if>
<if test="date != null">
date=#{date},
</if>
<if test="imei != null">
imei=#{imei},
</if>
<if test="creditNum != null">
creditNum=#{creditNum},
</if>
<if test="rgType != null">
rgType=#{rgType},
</if>
<if test="remark != null">
remark=#{remark},
</if>
<if test="customerId != null and customerId != ''">
customerId=#{customerId}
</if>
<if test="applicant != null and applicant != ''">
applicant=#{applicant}
</if>
</set>
WHERE imei=#{imei}
</update>
<insert id="insertDeviceKey" parameterType="com.glxp.udi.admin.entity.info.DeviceKeyEntity">
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})
</insert>
<delete id="deleteDeviceKey" parameterType="Map">
DELETE FROM device_check WHERE id = #{id}
DELETE
FROM device_check
WHERE id = #{id}
</delete>
<select id="findDeviceKeyByCustomerId" resultType="com.glxp.udi.admin.res.info.DeviceKeyResponse">

@ -2,20 +2,19 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.auth.UserRegisterDao">
<insert id="insertUserRegister" keyProperty="id" parameterType="com.glxp.udi.admin.entity.auth.UserRegisterEntity">
INSERT INTO user_register
(nickName, password, realName,
tel, mobile, userId,
email, companyName, creditNum,
area, detailAddr, bussinessStatus,
checkType, registerTime, checkTime, comments, areaCode, userName, licenseUrl, companyId)
tel, mobile, userId,
email, companyName, creditNum,
area, detailAddr, bussinessStatus,
checkType, registerTime, checkTime, comments, areaCode, userName, licenseUrl, companyId)
values (#{nickName}, #{password}, #{realName},
#{tel}, #{mobile}, #{userId},
#{email}, #{companyName}, #{creditNum},
#{area}, #{detailAddr}, #{bussinessStatus},
#{checkType}, #{registerTime}, #{checkTime},
#{comments}, #{areaCode}, #{userName}, #{licenseUrl}, #{companyId})
#{tel}, #{mobile}, #{userId},
#{email}, #{companyName}, #{creditNum},
#{area}, #{detailAddr}, #{bussinessStatus},
#{checkType}, #{registerTime}, #{checkTime},
#{comments}, #{areaCode}, #{userName}, #{licenseUrl}, #{companyId})
</insert>
<update id="updateUserRegister" parameterType="com.glxp.udi.admin.entity.auth.UserRegisterEntity">
@ -79,7 +78,7 @@
companyId=#{companyId},
</if>
</trim>
WHERE id=#{id}
WHERE id = #{id}
</update>
<delete id="deleteByCustomerId" parameterType="java.lang.Long">
@ -102,10 +101,4 @@
WHERE userId = #{userId}
</select>
<select id="isExit" parameterType="java.lang.String" resultType="java.lang.String">
SELECT 1
FROM user_register
WHERE (
mobile = #{phoneNum}) limit 1
</select>
</mapper>

@ -2,39 +2,58 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.basic.BussinessTypeDao">
<select id="filterAllByUser" parameterType="com.glxp.udi.admin.req.basic.BussinessTypeFilterRequest"
resultType="com.glxp.udi.admin.entity.basic.BussinessTypeEntity">
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`
<where>
<if test="name != ''and name != null">
AND basic_bussiness_type.name LIKE concat('%',#{name},'%')
AND basic_bussiness_type.name LIKE concat('%', #{name}, '%')
</if>
<if test="action != ''and action != null">
AND basic_bussiness_type.action LIKE concat(#{action},'%')
AND basic_bussiness_type.action LIKE concat(#{action}, '%')
</if>
<if test="mainAction != ''and mainAction != null">
AND basic_bussiness_type.mainAction LIKE concat(#{mainAction},'%')
AND basic_bussiness_type.mainAction LIKE concat(#{mainAction}, '%')
</if>
<if test="locInvCode != ''and locInvCode != null">
AND inv_warehouse.`code` =#{locInvCode}
AND inv_warehouse.`code` = #{locInvCode}
</if>
<if test="customerId != null and customerId != ''">
and basic_bussiness_type.customerId = #{customerId}
and basic_bussiness_type.customerId = #{customerId}
</if>
<if test="enabled != null">
and basic_bussiness_type.enable = #{enabled}
@ -45,36 +64,56 @@
<select id="filterAllByUserList" parameterType="com.glxp.udi.admin.req.basic.BussinessTypeFilterRequest"
resultType="com.glxp.udi.admin.entity.basic.BussinessTypeEntity">
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`
<where>
<if test="name != ''and name != null">
AND basic_bussiness_type.name LIKE concat('%',#{name},'%')
AND basic_bussiness_type.name LIKE concat('%', #{name}, '%')
</if>
<if test="action != ''and action != null">
AND basic_bussiness_type.action LIKE concat(#{action},'%')
AND basic_bussiness_type.action LIKE concat(#{action}, '%')
</if>
<if test="mainAction != ''and mainAction != null">
AND basic_bussiness_type.mainAction LIKE concat(#{mainAction},'%')
AND basic_bussiness_type.mainAction LIKE concat(#{mainAction}, '%')
</if>
<if test="locInvCode != ''and locInvCode != null">
AND inv_warehouse.`code` =#{locInvCode}
AND inv_warehouse.`code` = #{locInvCode}
</if>
<if test="customerId != null and customerId != ''">
and basic_bussiness_type.customerId = #{customerId}
and basic_bussiness_type.customerId = #{customerId}
</if>
<if test="enabled != null">
and basic_bussiness_type.enable = #{enabled}
@ -83,134 +122,187 @@
group by basic_bussiness_type.action
</select>
<insert id="insertBussinessType" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.basic.BussinessTypeEntity">
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>
<insert id="insertIgnoreBussinessType" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.basic.BussinessTypeEntity">
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})
</insert>
<update id="updateBussinessType" parameterType="com.glxp.udi.admin.entity.basic.BussinessTypeEntity">
UPDATE basic_bussiness_type
<trim prefix="set" suffixOverrides=",">
<if test="action != null">action = #{action},</if>
<if test="name != null">name = #{name},</if>
<if test="enable != null">enable = #{enable},</if>
<if test="remark != null">remark = #{remark},</if>
<if test="mainAction != null">mainAction = #{mainAction},</if>
<if test="localAction != null">localAction=#{localAction},</if>
<if test="checkEnable != null">checkEnable=#{checkEnable},</if>
<if test="genUnit != null">genUnit=#{genUnit},</if>
<if test="innerOrder != null">innerOrder=#{innerOrder},</if>
<if test="secCheckEnable != null">secCheckEnable=#{secCheckEnable},</if>
<if test="checkUdims != null">checkUdims=#{checkUdims},</if>
<if test="checkPdaEd != null">checkPdaEd=#{checkPdaEd},</if>
<if test="checkPdaUn != null">checkPdaUn=#{checkPdaUn},</if>
<if test="checkPc != null">checkPc=#{checkPc},</if>
<if test="checkWebNew != null">checkWebNew=#{checkWebNew},</if>
<if test="checkChange != null">checkChange=#{checkChange},</if>
<if test="secCheckUdims != null">secCheckUdims=#{secCheckUdims},</if>
<if test="secCheckPdaEd != null">secCheckPdaEd=#{secCheckPdaEd},</if>
<if test="secCheckPdaUn != null">secCheckPdaUn=#{secCheckPdaUn},</if>
<if test="secCheckPc != null">secCheckPc=#{secCheckPc},</if>
<if test="secCheckWebNew != null">secCheckWebNew=#{secCheckWebNew},</if>
<if test="secCheckChange != null">secCheckChange=#{secCheckChange},</if>
<if test="checkBalacne != null">checkBalacne=#{checkBalacne},</if>
<if test="secCheckBalacne != null">secCheckBalacne=#{secCheckBalacne},</if>
<if test="index != null">index=#{index},</if>
<if test="corpType != null">corpType=#{corpType},</if>
<if test="storageCode != null">storageCode=#{storageCode},</if>
<if test="supplementOrderType != null">supplementOrderType=#{supplementOrderType},</if>
<if test="defaultUnit != null">defaultUnit=#{defaultUnit},</if>
<if test="customerId != null and customerId != ''">customerId=#{customerId},</if>
<if test="prefix != null and prefix != ''">prefix=#{prefix},</if>
<if test="action != null">
action = #{action},
</if>
<if test="name != null">
name = #{name},
</if>
<if test="enable != null">
enable = #{enable},
</if>
<if test="remark != null">
remark = #{remark},
</if>
<if test="mainAction != null">
mainAction = #{mainAction},
</if>
<if test="localAction != null">
localAction=#{localAction},
</if>
<if test="checkEnable != null">
checkEnable=#{checkEnable},
</if>
<if test="genUnit != null">
genUnit=#{genUnit},
</if>
<if test="innerOrder != null">
innerOrder=#{innerOrder},
</if>
<if test="secCheckEnable != null">
secCheckEnable=#{secCheckEnable},
</if>
<if test="checkUdims != null">
checkUdims=#{checkUdims},
</if>
<if test="checkPdaEd != null">
checkPdaEd=#{checkPdaEd},
</if>
<if test="checkPdaUn != null">
checkPdaUn=#{checkPdaUn},
</if>
<if test="checkPc != null">
checkPc=#{checkPc},
</if>
<if test="checkWebNew != null">
checkWebNew=#{checkWebNew},
</if>
<if test="checkChange != null">
checkChange=#{checkChange},
</if>
<if test="secCheckUdims != null">
secCheckUdims=#{secCheckUdims},
</if>
<if test="secCheckPdaEd != null">
secCheckPdaEd=#{secCheckPdaEd},
</if>
<if test="secCheckPdaUn != null">
secCheckPdaUn=#{secCheckPdaUn},
</if>
<if test="secCheckPc != null">
secCheckPc=#{secCheckPc},
</if>
<if test="secCheckWebNew != null">
secCheckWebNew=#{secCheckWebNew},
</if>
<if test="secCheckChange != null">
secCheckChange=#{secCheckChange},
</if>
<if test="checkBalacne != null">
checkBalacne=#{checkBalacne},
</if>
<if test="secCheckBalacne != null">
secCheckBalacne=#{secCheckBalacne},
</if>
<if test="index != null">
index=#{index},
</if>
<if test="corpType != null">
corpType=#{corpType},
</if>
<if test="storageCode != null">
storageCode=#{storageCode},
</if>
<if test="supplementOrderType != null">
supplementOrderType=#{supplementOrderType},
</if>
<if test="defaultUnit != null">
defaultUnit=#{defaultUnit},
</if>
<if test="customerId != null and customerId != ''">
customerId=#{customerId},
</if>
<if test="prefix != null and prefix != ''">
prefix=#{prefix},
</if>
thirdSysFk=#{thirdSysFk},
</trim>
WHERE id = #{id}
@ -260,10 +352,15 @@
</select>
<select id="countByName" resultType="java.lang.Integer">
select count(*) from basic_bussiness_type where name = #{name} and customerId = #{customerId}
select count(*)
from basic_bussiness_type
where name = #{name}
and customerId = #{customerId}
</select>
<select id="selectSupplementTypeByAction" resultType="java.lang.String">
select supplementOrderType from basic_bussiness_type where action = #{action}
select supplementOrderType
from basic_bussiness_type
where action = #{action}
</select>
</mapper>

@ -16,11 +16,11 @@
<insert id="batchInsert" parameterType="com.glxp.udi.admin.entity.basic.BasicBussinessTypeRoleEntity">
insert into basic_bussiness_type_role
(role_id, action)
(role_id, action)
values
<foreach collection="list" index="index" item="item" separator=",">
(#{item.role_id},
#{item.action})
#{item.action})
</foreach>
</insert>
</mapper>

@ -9,19 +9,19 @@
where customerId = #{CustomerId}
</select>
<select id="filterCompany" parameterType="com.glxp.udi.admin.req.info.FilterCompanyRequest"
resultType="com.glxp.udi.admin.entity.info.CompanyEntity">
SELECT * FROM company
SELECT *
FROM company
<where>
<if test="customerId != null and customerId != ''">
and parentIdFk = #{customerId}
</if>
<if test="companyName != null and companyName != ''">
and companyName like concat('%',#{companyName},'%')
and companyName like concat('%', #{companyName}, '%')
</if>
<if test="creditNum != null and creditNum != ''">
and creditNum like concat('%',#{creditNum},'%')
and creditNum like concat('%', #{creditNum}, '%')
</if>
<if test="auditStatus != null and auditStatus != ''">
and auditStatus = #{auditStatus}
@ -31,6 +31,7 @@
</if>
</where>
</select>
<delete id="deleteCompany" parameterType="java.lang.Long">
delete
from company
@ -44,33 +45,6 @@
where companyName = #{companyName}
</select>
<select id="getSubCompany" parameterType="com.glxp.udi.admin.req.info.FilterCompanyRequest"
resultType="com.glxp.udi.admin.entity.info.CompanyEntity">
SELECT * FROM company
<where>
<if test="customerId != null and customerId != ''">
and parentIdFk = #{customerId}
</if>
<if test="companyName != null and companyName != ''">
and companyName like concat('%',#{companyName},'%')
</if>
<if test="creditNum != null and creditNum != ''">
and creditNum like concat('%',#{creditNum},'%')
</if>
<if test="auditStatus != null and auditStatus != ''">
and auditStatus = #{auditStatus}
</if>
<if test="unitIdFk != null and unitIdFk != ''">
and unitIdFk = #{unitIdFk}
</if>
<if test="(auditStatus == null or auditStatus == '') and auditStatusList != null and auditStatusList.size() > 0">
<foreach collection="auditStatusList" item="auditStatus" open="AND (" separator="OR" close=")">
auditStatus = #{auditStatus,jdbcType=VARCHAR}
</foreach>
</if>
</where>
</select>
<update id="modifyCompany" parameterType="com.glxp.udi.admin.entity.info.CompanyEntity">
UPDATE company
<trim prefix="set" suffixOverrides=",">
@ -183,63 +157,57 @@
unitIdFk=#{unitIdFk},
</if>
</trim>
WHERE customerId=#{customerId}
WHERE customerId = #{customerId}
</update>
<insert id="insertCompany" parameterType="com.glxp.udi.admin.entity.info.CompanyEntity">
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})
</insert>
<select id="findKey" parameterType="java.lang.String"
resultType="com.glxp.udi.admin.entity.info.AliKeyEntity">
SELECT company.refEntId,
company.entId,
alicert.appKey,
alicert.appSecret
<select id="findCompanyName" resultType="java.lang.String">
select companyName
from company
INNER JOIN alicert on company.certIdFk = alicert.id
where company.customerId = #{customerId}
</select><select id="findCompanyName" resultType="java.lang.String">
select companyName from company where customerId = #{customerId}
</select>
where customerId = #{customerId}
</select>
</mapper>

@ -2,24 +2,24 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.info.CompanyUpdateLogDao">
<select id="filterCompanyUpdateLog" parameterType="com.glxp.udi.admin.req.info.FilterCompanyUpdateLogRequest"
resultType="com.glxp.udi.admin.entity.info.CompanyUpdateLogEntity">
select * from company_update_log
select *
from company_update_log
<where>
<if test="customerId != '' and customerId!=null">
<if test="customerId != '' and customerId != null">
and customerId = #{customerId}
</if>
<if test="submit != null and submit != ''">
and submit like concat('%',#{submit},'%')
and submit like concat('%', #{submit}, '%')
</if>
<if test="status != '' and status!=null">
<if test="status != '' and status != null">
and status = #{status}
</if>
<if test="logType != '' and logType!=null">
<if test="logType != '' and logType != null">
and logType = #{logType}
</if>
<if test="noStatus != '' and noStatus!=null">
<if test="noStatus != '' and noStatus != null">
and status != #{noStatus}
</if>
</where>
@ -28,66 +28,87 @@
<select id="findCompanyUpdateLog" parameterType="java.lang.Long"
resultType="com.glxp.udi.admin.entity.info.CompanyUpdateLogEntity">
SELECT * FROM company_update_log where customerId = #{customerId}
SELECT *
FROM company_update_log
where customerId = #{customerId}
</select>
<select id="findCompanyUpdateLogBySubmit" parameterType="java.lang.String"
resultType="com.glxp.udi.admin.entity.info.CompanyUpdateLogEntity">
SELECT * FROM company_update_log where submit = #{submit}
SELECT *
FROM company_update_log
where submit = #{submit}
</select>
<select id="getCompanyUpdateLog" parameterType="com.glxp.udi.admin.req.info.FilterCompanyUpdateLogRequest"
resultType="com.glxp.udi.admin.entity.info.CompanyUpdateLogEntity">
SELECT * FROM company_update_log
SELECT *
FROM company_update_log
<where>
<if test="customerId != null and customerId != ''">
and customerId = #{customerId}
</if>
<if test="submit != null and submit != ''">
and submit like concat('%',#{submit},'%')
and submit like concat('%', #{submit}, '%')
</if>
<if test="status != '' and status!=null">
<if test="status != '' and status != null">
and status = #{status}
</if>
<if test="logType != '' and logType!=null">
<if test="logType != '' and logType != null">
and logType = #{logType}
</if>
</where>
</select>
<update id="updateCompanyUpdateLog" parameterType="com.glxp.udi.admin.entity.info.CompanyUpdateLogEntity">
UPDATE company_update_log
<set>
<if test="customerId != null">customerId=#{customerId},</if>
<if test="updateCause != null">updateCause=#{updateCause},</if>
<if test="status != null">status=#{status},</if>
<if test="create_time != null">create_time=#{create_time},</if>
<if test="update_time != null">update_time=#{update_time},</if>
<if test="submit != null">submit=#{submit},</if>
<if test="auditor != null">auditor=#{auditor},</if>
<if test="noPassCause != null">noPassCause=#{noPassCause},</if>
<if test="param != null">param=#{param},</if>
<if test="logType != null">logType=#{logType},</if>
<if test="customerId != null">
customerId=#{customerId},
</if>
<if test="updateCause != null">
updateCause=#{updateCause},
</if>
<if test="status != null">
status=#{status},
</if>
<if test="create_time != null">
create_time=#{create_time},
</if>
<if test="update_time != null">
update_time=#{update_time},
</if>
<if test="submit != null">
submit=#{submit},
</if>
<if test="auditor != null">
auditor=#{auditor},
</if>
<if test="noPassCause != null">
noPassCause=#{noPassCause},
</if>
<if test="param != null">
param=#{param},
</if>
<if test="logType != null">
logType=#{logType},
</if>
</set>
WHERE id = #{id}
</update>
<insert id="insertCompanyUpdateLog" parameterType="com.glxp.udi.admin.entity.info.CompanyUpdateLogEntity">
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})
</insert>
</mapper>

@ -2,7 +2,6 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.info.PlatformDao">
<insert id="save" parameterType="com.glxp.udi.admin.entity.info.PlatformEntity">
insert into auth_platform
(id, name, host)
@ -11,23 +10,25 @@
<insert id="batchSave" parameterType="java.util.List">
replace into auth_platform
( id,name,host )
(id, name, host)
values
<foreach item="item" index="index" collection="list"
separator=",">
(
#{item.id},#{item.name,jdbcType=VARCHAR},#{item.host,jdbcType=VARCHAR}
)
(#{item.id}, #{item.name,jdbcType=VARCHAR}, #{item.host,jdbcType=VARCHAR})
</foreach>
</insert>
<update id="update" parameterType="com.glxp.udi.admin.entity.info.PlatformEntity">
update auth_platform
<set>
<if test="name != null">name=#{name},</if>
<if test="host != null">host=#{host},</if>
<if test="name != null">
name=#{name},
</if>
<if test="host != null">
host=#{host},
</if>
</set>
where id=#{id}
where id = #{id}
</update>
<select id="get" resultType="com.glxp.udi.admin.entity.info.PlatformEntity">
@ -37,60 +38,67 @@
</select>
<select id="list" resultType="com.glxp.udi.admin.entity.info.PlatformEntity">
select * from auth_platform
select *
from auth_platform
<where>
<if test="id != null and id != ''">
and id = #{id}
</if>
<if test="name != null and name != ''">
and instr(name,#{name})
and instr(name, #{name})
</if>
<if test="host != null and host != ''">
and instr(host,#{host})
and instr(host, #{host})
</if>
</where>
order by id desc
</select>
<select id="count" resultType="int">
select count(*) from auth_platform
select count(*)
from auth_platform
<where>
<if test="id != null and id != ''">
and id = #{id}
</if>
<if test="name != null and name != ''">
and instr(name,#{name})
and instr(name, #{name})
</if>
<if test="host != null and host != ''">
and instr(host,#{host})
and instr(host, #{host})
</if>
</where>
</select>
<select id="getLinkPlatformList" resultType="com.glxp.udi.admin.res.info.PlatformLinkResponse">
select u.id,
u.unitId,
u.name corpName,
u.corpType,
u.pinyinCode,
p.name platformName,
p.id platformId,
u.sourceAction,
u.targetAction, u.invCode, u.invSubCode
u.unitId,
u.name corpName,
u.corpType,
u.pinyinCode,
p.name platformName,
p.id platformId,
u.sourceAction,
u.targetAction,
u.invCode,
u.invSubCode
from io_unit_maintain u
left join auth_platform p on u.platformId = p.id
left join auth_platform p on u.platformId = p.id
<where>
customerId = #{customerId}
and platformId is not null
and platformId is not null
<if test="key != null and key != ''">
AND (u.unitId like concat('%', #{key}, '%')
or u.name like concat('%', #{key}, '%')
or u.pinyinCode like concat('%', #{key}, '%')
)
or u.name like concat('%', #{key}, '%')
or u.pinyinCode like concat('%', #{key}, '%')
)
</if>
</where>
</select>
<select id="selectByNameAndHost" resultType="com.glxp.udi.admin.entity.info.PlatformEntity">
select * from auth_platform where name = #{name} and host= #{host}
select *
from auth_platform
where name = #{name}
and host = #{host}
</select>
</mapper>

@ -2,8 +2,6 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.info.ScheduledDao">
<insert id="insertScheduled" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.info.ScheduledEntity">
insert INTO scheduled
@ -13,23 +11,26 @@
#{customerId})
</insert>
<delete id="deleteScheduled" parameterType="java.lang.String">
delete
from scheduled
where id = #{id}
</delete>
<update id="modifyScheduled" parameterType="com.glxp.udi.admin.entity.info.ScheduledEntity">
UPDATE scheduled
<set>
<if test="cron != null">cron=#{cron},</if>
<if test="cron != null">
cron=#{cron},
</if>
</set>
WHERE cronName=#{cronName}
WHERE cronName = #{cronName}
</update>
<select id="findScheduled" parameterType="com.glxp.udi.admin.req.udidl.ScheduledRequest"
resultType="com.glxp.udi.admin.entity.info.ScheduledEntity">
select * from scheduled
select *
from scheduled
<where>
<if test="cronName != null and cronName != ''">
and cronName = #{cronName}
@ -38,8 +39,5 @@
and customerId = #{customerId}
</if>
</where>
</select>
</mapper>

@ -4,7 +4,9 @@
<mapper namespace="com.glxp.udi.admin.dao.info.SetupDao">
<select id="findSetup" parameterType="java.lang.String"
resultType="com.glxp.udi.admin.entity.info.SetupEntity">
SELECT * FROM customer_set where customerId = #{customerId}
SELECT *
FROM customer_set
where customerId = #{customerId}
</select>
<update id="modifySetup" parameterType="com.glxp.udi.admin.entity.info.SetupEntity">
@ -29,15 +31,13 @@
lastUploadDate=#{lastUploadDate},
</if>
</set>
WHERE customerId=#{customerId}
WHERE customerId = #{customerId}
</update>
<insert id="insertSetup" parameterType="com.glxp.udi.admin.entity.info.SetupEntity">
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})
</insert>
</mapper>

@ -2,8 +2,6 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.inout.CodesDao">
<update id="updateUnit">
update io_codes
set fromCorp = #{fromCorp} and fromCorpId = #{fromCorpId}
@ -11,18 +9,26 @@
</update>
<update id="updateOrderId">
update io_codes set orderId = #{newOrderId} where orderId = #{orderId}
update io_codes
set orderId = #{newOrderId}
where orderId = #{orderId}
</update>
<update id="updateCount">
update io_codes set count = #{count} where id = #{id}
update io_codes
set count = #{count}
where id = #{id}
</update>
<select id="selectByOrderId" resultType="com.glxp.udi.admin.entity.inout.WarehouseEntity">
select * from io_codes where orderId = #{orderId}
select *
from io_codes
where orderId = #{orderId}
</select>
<delete id="deleteByOrderId">
delete from io_codes where orderId = #{orderId}
delete
from io_codes
where orderId = #{orderId}
</delete>
</mapper>

@ -3,18 +3,27 @@
<mapper namespace="com.glxp.udi.admin.dao.inout.CodesTempDao">
<update id="updateCount">
update io_codes_temp set count = #{count} where id = #{id}
update io_codes_temp
set count = #{count}
where id = #{id}
</update>
<delete id="delete">
delete from io_codes_temp where id = #{id} and orderId = #{orderId}
delete
from io_codes_temp
where id = #{id}
and orderId = #{orderId}
</delete>
<select id="selectByOrderId" resultType="com.glxp.udi.admin.entity.inout.WarehousetempEntity">
select * from io_codes_temp where orderId = #{orderId}
select *
from io_codes_temp
where orderId = #{orderId}
</select>
<delete id="deleteByOrderId">
delete from io_codes_temp where orderId = #{orderId}
delete
from io_codes_temp
where orderId = #{orderId}
</delete>
</mapper>

@ -9,6 +9,8 @@
</select>
<delete id="deleteByOrderId">
delete from io_inv_product_detail where orderIdFk = #{orderId}
delete
from io_inv_product_detail
where orderIdFk = #{orderId}
</delete>
</mapper>

@ -2,9 +2,9 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.inout.OrderDao">
<update id="updateActDate">
update io_order set actDate = #{actDate}
update io_order
set actDate = #{actDate}
<where>
<foreach collection="orderIds" item="item" separator="," open="(" close=")" index="index">
orderId = #{item}
@ -13,11 +13,14 @@
</update>
<select id="selectNos" resultType="com.glxp.udi.admin.res.inout.OrderNoResult">
select supplementNo, replicateNo from io_order where orderId = #{orderId}
select supplementNo, replicateNo
from io_order
where orderId = #{orderId}
</select>
<update id="updateReplicateNo">
update io_order set replicateNo = #{replicateNo} where orderId = #{orderId}
update io_order
set replicateNo = #{replicateNo}
where orderId = #{orderId}
</update>
</mapper>

@ -3,6 +3,8 @@
<mapper namespace="com.glxp.udi.admin.dao.inout.OrderDetailDao">
<delete id="deleteByOrderId">
delete from io_order_detail where orderIdFk = #{orderId}
delete
from io_order_detail
where orderIdFk = #{orderId}
</delete>
</mapper>

@ -2,60 +2,57 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.inout.StockQRCodeTextDao">
<select id="filterStockQRCodeText" parameterType="com.glxp.udi.admin.req.inout.StockQRCodeTextFilterRequest"
resultType="com.glxp.udi.admin.entity.inout.StockQRCodeTextEntity">
select * from stock_qrcode_text
select *
from stock_qrcode_text
<where>
<if test="orderId != '' and orderId!=null">
<if test="orderId != '' and orderId != null">
and orderId = #{orderId}
</if>
<if test="detailId != '' and detailId!=null">
<if test="detailId != '' and detailId != null">
and detailId = #{detailId}
</if>
<if test="status != '' and status!=null">
<if test="status != '' and status != null">
and status = #{status}
</if>
</where>
ORDER BY id DESC
</select>
<insert id="insertStockQRCodeText" keyProperty="id" parameterType="com.glxp.udi.admin.entity.inout.StockQRCodeTextEntity">
<insert id="insertStockQRCodeText" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.inout.StockQRCodeTextEntity">
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})
</insert>
<insert id="insertStockQRCodeTexts" keyProperty="id" parameterType="com.glxp.udi.admin.entity.inout.StockQRCodeTextEntity">
<insert id="insertStockQRCodeTexts" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.inout.StockQRCodeTextEntity">
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
<foreach collection="stockQRCodeTextEntities" item="item" index="index"
separator=",">
(
#{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})
</foreach>
</insert>
<delete id="deleteByOrderId" parameterType="Map">
@ -66,9 +63,9 @@
<select id="findOne" parameterType="Map"
resultType="com.glxp.udi.admin.entity.inout.StockQRCodeTextEntity">
SELECT * FROM stock_qrcode_text
SELECT *
FROM stock_qrcode_text
WHERE id = #{id}
limit 1
</select>
</mapper>

@ -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>
<select id="findByUuids" parameterType="java.lang.String"
@ -34,100 +35,94 @@
<insert id="insertUdiInfo" keyProperty="id" parameterType="com.glxp.udi.admin.entity.inout.UdiInfoEntity">
replace
INTO io_productinfo
(
nameCode,packRatio,packLevel,bhxjsl,
bhzxxsbzsl,zxxsbzbhsydysl,bhxjcpbm,bzcj,addType,deviceRecordKey,isUseDy,
cpmctymc,cplb,flbm,ggxh,qxlb,tyshxydm,ylqxzcrbarmc,zczbhhzbapzbh,ylqxzcrbarywmc,uuid,sjcpbm,versionNumber
,diType,customerId,scbssfbhph,scbssfbhxlh,scbssfbhscrq,scbssfbhsxrq,cpms,manufactory,lastUpdateTime
)
values
(
#{nameCode},
#{packRatio},
#{packLevel},
#{bhxjsl},
#{bhzxxsbzsl},
#{zxxsbzbhsydysl},
#{bhxjcpbm},
#{bzcj},
#{addType},
#{deviceRecordKey},
#{isUseDy},
#{cpmctymc},
#{cplb},
#{flbm},
#{ggxh},
#{qxlb},
#{tyshxydm},
#{ylqxzcrbarmc},
#{zczbhhzbapzbh},
#{ylqxzcrbarywmc},
#{uuid},
#{sjcpbm},
#{versionNumber},
#{diType},
#{customerId},
#{scbssfbhph},
#{scbssfbhxlh},
#{scbssfbhscrq},
#{scbssfbhsxrq},
#{cpms},
#{manufactory},
#{lastUpdateTime}
)
INTO io_productinfo
(nameCode, packRatio, packLevel, bhxjsl,
bhzxxsbzsl, zxxsbzbhsydysl, bhxjcpbm, bzcj, addType, deviceRecordKey, isUseDy,
cpmctymc, cplb, flbm, ggxh, qxlb, tyshxydm, ylqxzcrbarmc, zczbhhzbapzbh, ylqxzcrbarywmc, uuid, sjcpbm,
versionNumber
, diType, customerId, scbssfbhph, scbssfbhxlh, scbssfbhscrq, scbssfbhsxrq, cpms, manufactory,
lastUpdateTime)
values (#{nameCode},
#{packRatio},
#{packLevel},
#{bhxjsl},
#{bhzxxsbzsl},
#{zxxsbzbhsydysl},
#{bhxjcpbm},
#{bzcj},
#{addType},
#{deviceRecordKey},
#{isUseDy},
#{cpmctymc},
#{cplb},
#{flbm},
#{ggxh},
#{qxlb},
#{tyshxydm},
#{ylqxzcrbarmc},
#{zczbhhzbapzbh},
#{ylqxzcrbarywmc},
#{uuid},
#{sjcpbm},
#{versionNumber},
#{diType},
#{customerId},
#{scbssfbhph},
#{scbssfbhxlh},
#{scbssfbhscrq},
#{scbssfbhsxrq},
#{cpms},
#{manufactory},
#{lastUpdateTime})
</insert>
<insert id="insertUdiInfos" keyProperty="id" parameterType="java.util.List">
replace INTO io_productinfo
(
nameCode,packRatio,packLevel,bhxjsl,
bhzxxsbzsl,zxxsbzbhsydysl,bhxjcpbm,bzcj,addType,deviceRecordKey,isUseDy,
cpmctymc,cplb,flbm,ggxh,qxlb,tyshxydm,ylqxzcrbarmc,zczbhhzbapzbh,ylqxzcrbarywmc,uuid,sjcpbm,versionNumber
,diType,customerId,scbssfbhph,scbssfbhxlh,scbssfbhscrq,scbssfbhsxrq,cpms,manufactory,lastUpdateTime,isDisable,
ybbm,sptm
)
(nameCode, packRatio, packLevel, bhxjsl,
bhzxxsbzsl, zxxsbzbhsydysl, bhxjcpbm, bzcj, addType, deviceRecordKey, isUseDy,
cpmctymc, cplb, flbm, ggxh, qxlb, tyshxydm, ylqxzcrbarmc, zczbhhzbapzbh, ylqxzcrbarywmc, uuid, sjcpbm,
versionNumber
, diType, customerId, scbssfbhph, scbssfbhxlh, scbssfbhscrq, scbssfbhsxrq, cpms, manufactory,
lastUpdateTime, isDisable,
ybbm, sptm)
values
<foreach collection="udiInfoEntities" item="item" index="index"
separator=",">
(
#{item.nameCode},
#{item.packRatio},
#{item.packLevel},
#{item.bhxjsl},
#{item.bhzxxsbzsl},
#{item.zxxsbzbhsydysl},
#{item.bhxjcpbm},
#{item.bzcj},
#{item.addType},
#{item.deviceRecordKey},
#{item.isUseDy},
#{item.cpmctymc},
#{item.cplb},
#{item.flbm},
#{item.ggxh},
#{item.qxlb},
#{item.tyshxydm},
#{item.ylqxzcrbarmc},
#{item.zczbhhzbapzbh},
#{item.ylqxzcrbarywmc},
#{item.uuid},
#{item.sjcpbm},
#{item.versionNumber},
#{item.diType},
#{item.customerId},
#{item.scbssfbhph},
#{item.scbssfbhxlh},
#{item.scbssfbhscrq},
#{item.scbssfbhsxrq},
#{item.cpms},
#{item.manufactory},
#{item.lastUpdateTime},
#{item.isDisable},
#{item.ybbm},
#{item.sptm}
)
(#{item.nameCode},
#{item.packRatio},
#{item.packLevel},
#{item.bhxjsl},
#{item.bhzxxsbzsl},
#{item.zxxsbzbhsydysl},
#{item.bhxjcpbm},
#{item.bzcj},
#{item.addType},
#{item.deviceRecordKey},
#{item.isUseDy},
#{item.cpmctymc},
#{item.cplb},
#{item.flbm},
#{item.ggxh},
#{item.qxlb},
#{item.tyshxydm},
#{item.ylqxzcrbarmc},
#{item.zczbhhzbapzbh},
#{item.ylqxzcrbarywmc},
#{item.uuid},
#{item.sjcpbm},
#{item.versionNumber},
#{item.diType},
#{item.customerId},
#{item.scbssfbhph},
#{item.scbssfbhxlh},
#{item.scbssfbhscrq},
#{item.scbssfbhsxrq},
#{item.cpms},
#{item.manufactory},
#{item.lastUpdateTime},
#{item.isDisable},
#{item.ybbm},
#{item.sptm})
</foreach>
</insert>
@ -140,41 +135,111 @@
<update id="updateUdiInfo" parameterType="com.glxp.udi.admin.entity.inout.UdiInfoEntity">
UPDATE io_productinfo
<set>
<if test="packRatio != null">packRatio=#{packRatio},</if>
<if test="packLevel != null">packLevel=#{packLevel},</if>
<if test="bhxjsl != null">bhxjsl=#{bhxjsl},</if>
<if test="bhzxxsbzsl != null">bhzxxsbzsl=#{bhzxxsbzsl},</if>
<if test="zxxsbzbhsydysl != null">zxxsbzbhsydysl=#{zxxsbzbhsydysl},</if>
<if test="bhxjcpbm != null">bhxjcpbm=#{bhxjcpbm},</if>
<if test="bzcj != null">bzcj=#{bzcj},</if>
<if test="addType != null">addType=#{addType},</if>
<if test="deviceRecordKey != null">deviceRecordKey=#{deviceRecordKey},</if>
<if test="isUseDy != null">isUseDy=#{isUseDy},</if>
<if test="cpmctymc != null">cpmctymc=#{cpmctymc},</if>
<if test="cplb != null">cplb=#{cplb},</if>
<if test="flbm != null">flbm=#{flbm},</if>
<if test="ggxh != null">ggxh=#{ggxh},</if>
<if test="qxlb != null">qxlb=#{qxlb},</if>
<if test="tyshxydm != null">tyshxydm=#{tyshxydm},</if>
<if test="ylqxzcrbarmc != null">ylqxzcrbarmc=#{ylqxzcrbarmc},</if>
<if test="ylqxzcrbarywmc != null">ylqxzcrbarywmc=#{ylqxzcrbarywmc},</if>
<if test="uuid != null">uuid=#{uuid},</if>
<if test="sjcpbm != null">sjcpbm=#{sjcpbm},</if>
<if test="versionNumber != null">versionNumber=#{versionNumber},</if>
<if test="diType != null">diType=#{diType},</if>
<if test="customerId != null">customerId=#{customerId},</if>
<if test="scbssfbhph != null">scbssfbhph=#{scbssfbhph},</if>
<if test="scbssfbhxlh != null">scbssfbhxlh=#{scbssfbhxlh},</if>
<if test="scbssfbhscrq != null">scbssfbhscrq=#{scbssfbhscrq},</if>
<if test="scbssfbhsxrq != null">scbssfbhsxrq=#{scbssfbhsxrq},</if>
<if test="cpms != null">cpms=#{cpms},</if>
<if test="ybbm != null">ybbm=#{ybbm},</if>
<if test="sptm != null">sptm=#{sptm},</if>
<if test="isDisable != null">isDisable=#{isDisable},</if>
<if test="manufactory != null">manufactory=#{manufactory},</if>
<if test="lastUpdateTime != null">lastUpdateTime=#{lastUpdateTime},</if>
<if test="thirdId != null and thirdId != ''">thirdId=#{thirdId},</if>
<if test="thirdId == 'empty'">thirdId = null,</if>
<if test="packRatio != null">
packRatio=#{packRatio},
</if>
<if test="packLevel != null">
packLevel=#{packLevel},
</if>
<if test="bhxjsl != null">
bhxjsl=#{bhxjsl},
</if>
<if test="bhzxxsbzsl != null">
bhzxxsbzsl=#{bhzxxsbzsl},
</if>
<if test="zxxsbzbhsydysl != null">
zxxsbzbhsydysl=#{zxxsbzbhsydysl},
</if>
<if test="bhxjcpbm != null">
bhxjcpbm=#{bhxjcpbm},
</if>
<if test="bzcj != null">
bzcj=#{bzcj},
</if>
<if test="addType != null">
addType=#{addType},
</if>
<if test="deviceRecordKey != null">
deviceRecordKey=#{deviceRecordKey},
</if>
<if test="isUseDy != null">
isUseDy=#{isUseDy},
</if>
<if test="cpmctymc != null">
cpmctymc=#{cpmctymc},
</if>
<if test="cplb != null">
cplb=#{cplb},
</if>
<if test="flbm != null">
flbm=#{flbm},
</if>
<if test="ggxh != null">
ggxh=#{ggxh},
</if>
<if test="qxlb != null">
qxlb=#{qxlb},
</if>
<if test="tyshxydm != null">
tyshxydm=#{tyshxydm},
</if>
<if test="ylqxzcrbarmc != null">
ylqxzcrbarmc=#{ylqxzcrbarmc},
</if>
<if test="ylqxzcrbarywmc != null">
ylqxzcrbarywmc=#{ylqxzcrbarywmc},
</if>
<if test="uuid != null">
uuid=#{uuid},
</if>
<if test="sjcpbm != null">
sjcpbm=#{sjcpbm},
</if>
<if test="versionNumber != null">
versionNumber=#{versionNumber},
</if>
<if test="diType != null">
diType=#{diType},
</if>
<if test="customerId != null">
customerId=#{customerId},
</if>
<if test="scbssfbhph != null">
scbssfbhph=#{scbssfbhph},
</if>
<if test="scbssfbhxlh != null">
scbssfbhxlh=#{scbssfbhxlh},
</if>
<if test="scbssfbhscrq != null">
scbssfbhscrq=#{scbssfbhscrq},
</if>
<if test="scbssfbhsxrq != null">
scbssfbhsxrq=#{scbssfbhsxrq},
</if>
<if test="cpms != null">
cpms=#{cpms},
</if>
<if test="ybbm != null">
ybbm=#{ybbm},
</if>
<if test="sptm != null">
sptm=#{sptm},
</if>
<if test="isDisable != null">
isDisable=#{isDisable},
</if>
<if test="manufactory != null">
manufactory=#{manufactory},
</if>
<if test="lastUpdateTime != null">
lastUpdateTime=#{lastUpdateTime},
</if>
<if test="thirdId != null and thirdId != ''">
thirdId=#{thirdId},
</if>
<if test="thirdId == 'empty'">
thirdId = null,
</if>
</set>
WHERE id = #{id}
</update>
@ -182,12 +247,24 @@
<update id="updateUdiInfoByUuid" parameterType="com.glxp.udi.admin.entity.inout.UdiInfoEntity">
UPDATE io_productinfo
<set>
<if test="zxxsbzbhsydysl != null">zxxsbzbhsydysl=#{zxxsbzbhsydysl},</if>
<if test="isUseDy != null">isUseDy=#{isUseDy},</if>
<if test="customerId != null">customerId=#{customerId},</if>
<if test="thirdId != null and thirdId != ''">thirdId=#{thirdId},</if>
<if test="lastUpdateTime != null">lastUpdateTime=#{lastUpdateTime},</if>
<if test="manufactory != null">manufactory=#{manufactory},</if>
<if test="zxxsbzbhsydysl != null">
zxxsbzbhsydysl=#{zxxsbzbhsydysl},
</if>
<if test="isUseDy != null">
isUseDy=#{isUseDy},
</if>
<if test="customerId != null">
customerId=#{customerId},
</if>
<if test="thirdId != null and thirdId != ''">
thirdId=#{thirdId},
</if>
<if test="lastUpdateTime != null">
lastUpdateTime=#{lastUpdateTime},
</if>
<if test="manufactory != null">
manufactory=#{manufactory},
</if>
</set>
WHERE uuid = #{uuid}
</update>

@ -2,65 +2,110 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.inout.UdiRelevanceDao">
<select id="filterUdiRelevance" parameterType="com.glxp.udi.admin.req.inout.FilterUdiInfoRequest"
resultType="com.glxp.udi.admin.res.basic.UdiRelevanceResponse">
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
<where>
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">
AND ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc},'%')
AND ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc}, '%')
</if>
<if test="cpmctymc != '' and cpmctymc != null">
AND cpmctymc LIKE concat(#{cpmctymc},'%')
AND cpmctymc LIKE concat(#{cpmctymc}, '%')
</if>
<if test="nameCode != '' and nameCode != null">
AND nameCode LIKE concat(#{nameCode},'%')
AND nameCode LIKE concat(#{nameCode}, '%')
</if>
<if test="thirdId != '' and thirdId != null">
AND thirdId LIKE concat(#{thirdId},'%')
AND thirdId LIKE concat(#{thirdId}, '%')
</if>
<if test="uuid != '' and uuid != null">
AND uuid = #{uuid}
</if>
</where>
ORDER BY updateTime DESC
</select>
<select id="filterUdiGp" parameterType="com.glxp.udi.admin.req.inout.FilterUdiInfoRequest"
resultType="com.glxp.udi.admin.res.basic.UdiRelevanceResponse">
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 io_productinfo
right JOIN udi_relevance
ON io_productinfo.uuid = udi_relevance.uuid
right JOIN udi_relevance
ON io_productinfo.uuid = udi_relevance.uuid
<where>
<if test="ylqxzcrbarmc != '' and ylqxzcrbarmc != null">
AND ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc},'%')
AND ylqxzcrbarmc LIKE concat(#{ylqxzcrbarmc}, '%')
</if>
<if test="cpmctymc != '' and cpmctymc != null">
AND cpmctymc LIKE concat(#{cpmctymc},'%')
AND cpmctymc LIKE concat(#{cpmctymc}, '%')
</if>
<if test="nameCode != '' and nameCode != null">
AND nameCode LIKE concat(#{nameCode},'%')
AND nameCode LIKE concat(#{nameCode}, '%')
</if>
<if test="uuid != '' and uuid != null">
AND uuid = #{uuid}
@ -75,7 +120,8 @@
<select id="selectByUuid" parameterType="java.lang.String"
resultType="com.glxp.udi.admin.entity.inout.UdiRelevanceEntity">
select * FROM udi_relevance
select *
FROM udi_relevance
<where>
<if test="uuid != '' and uuid != null">
AND uuid = #{uuid}
@ -85,50 +131,68 @@
<select id="selectByThirdId" parameterType="java.lang.String"
resultType="com.glxp.udi.admin.entity.inout.UdiRelevanceEntity">
select * FROM udi_relevance WHERE thirdId = #{thirdId} limit 1
select *
FROM udi_relevance
WHERE thirdId = #{thirdId}
limit 1
</select>
<insert id="insertUdiRelevance" keyProperty="id" parameterType="com.glxp.udi.admin.entity.inout.UdiRelevanceEntity">
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})
</insert>
<delete id="deleteById" parameterType="Map">
DELETE FROM udi_relevance WHERE id = #{id}
DELETE
FROM udi_relevance
WHERE id = #{id}
</delete>
<delete id="deleteByIds" parameterType="java.util.List">
DELETE FROM udi_relevance WHERE id in
DELETE
FROM udi_relevance WHERE id in
<foreach collection="ids" item="item" open="(" separator="," close=")">
#{item}
</foreach>
</delete>
<delete id="deleteByUuid" parameterType="Map">
DELETE FROM udi_relevance WHERE uuid = #{uuid}
DELETE
FROM udi_relevance
WHERE uuid = #{uuid}
</delete>
<update id="updateUdiRelevance" parameterType="com.glxp.udi.admin.entity.inout.UdiRelevanceEntity">
UPDATE udi_relevance
<set>
<if test="thirdId != null">thirdId=#{thirdId},</if>
<if test="thirdName != null">thirdName=#{thirdName},</if>
<if test="uuid != null">uuid=#{uuid},</if>
<if test="isUseDy != null">isUseDy=#{isUseDy},</if>
<if test="updateTime != null">updateTime=#{updateTime},</if>
<if test="batchNo != null">batchNo=#{batchNo},</if>
<if test="warehouseName != null">warehouseName=#{warehouseName},</if>
<if test="thirdId != null">
thirdId=#{thirdId},
</if>
<if test="thirdName != null">
thirdName=#{thirdName},
</if>
<if test="uuid != null">
uuid=#{uuid},
</if>
<if test="isUseDy != null">
isUseDy=#{isUseDy},
</if>
<if test="updateTime != null">
updateTime=#{updateTime},
</if>
<if test="batchNo != null">
batchNo=#{batchNo},
</if>
<if test="warehouseName != null">
warehouseName=#{warehouseName},
</if>
</set>
WHERE id = #{id}
</update>

@ -2,10 +2,10 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.inout.UnitMaintainDao">
<select id="filterList" parameterType="com.glxp.udi.admin.req.inout.UnitMaintainFilterRequest"
resultType="com.glxp.udi.admin.entity.inout.UnitMaintainEntity">
SELECT * FROM io_unit_maintain
SELECT *
FROM io_unit_maintain
<where>
<if test="customerId != '' and customerId != null">
AND customerId = #{customerId}
@ -14,16 +14,15 @@
AND corpType = #{corpType}
</if>
<if test="key != '' and key != null">
AND (name like concat('%',#{key},'%')
or pinyinCode like concat('%',#{key},'%')
or unitId like concat('%',#{key},'%')
or thirdId like concat('%',#{key},'%')
or creditNo like concat('%',#{key},'%'))
AND (name like concat('%', #{key}, '%')
or pinyinCode like concat('%', #{key}, '%')
or unitId like concat('%', #{key}, '%')
or thirdId like concat('%', #{key}, '%')
or creditNo like concat('%', #{key}, '%'))
</if>
</where>
</select>
<insert id="insertUnitMaintain" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.inout.UnitMaintainEntity">
replace INTO io_unit_maintain
@ -43,38 +42,86 @@
<update id="updateUnit" parameterType="com.glxp.udi.admin.entity.inout.UnitMaintainEntity">
UPDATE io_unit_maintain
<set>
<if test="thirdId != null">thirdId=#{thirdId},</if>
<if test="unitId != null">unitId=#{unitId},</if>
<if test="name != null">name=#{name},</if>
<if test="spell != null">spell=#{spell},</if>
<if test="addr != null">addr=#{addr},</if>
<if test="status != null">status=#{status},</if>
<if test="type != null">type=#{type},</if>
<if test="creditNo != null">creditNo=#{creditNo},</if>
<if test="platformId != null">platformId=#{platformId},</if>
<if test="appid != null">appid=#{appid},</if>
<if test="apiKey != null">apiKey=#{apiKey},</if>
<if test="secretKey != null">secretKey=#{secretKey},</if>
<if test="customerId != null and customerId != ''">customerId=#{customerId},</if>
<if test="corpType != null and corpType != ''">corpType=#{corpType},</if>
<if test="outType != null and outType != ''">outType=#{outType},</if>
<if test="pinyinCode != null and pinyinCode != ''">pinyinCode=#{pinyinCode},</if>
<if test="contact != null and contact != ''">contact=#{contact},</if>
<if test="mobile != null and mobile != ''">mobile=#{mobile},</if>
<if test="sourceAction != null and sourceAction != ''">sourceAction=#{sourceAction},</if>
<if test="targetAction != null and targetAction != ''">targetAction=#{targetAction},</if>
<if test="invCode != null and invCode != ''">invCode=#{invCode},</if>
<if test="invSubCode != null and invSubCode != ''">invSubCode=#{invSubCode},</if>
<if test="thirdId != null">
thirdId=#{thirdId},
</if>
<if test="unitId != null">
unitId=#{unitId},
</if>
<if test="name != null">
name=#{name},
</if>
<if test="spell != null">
spell=#{spell},
</if>
<if test="addr != null">
addr=#{addr},
</if>
<if test="status != null">
status=#{status},
</if>
<if test="type != null">
type=#{type},
</if>
<if test="creditNo != null">
creditNo=#{creditNo},
</if>
<if test="platformId != null">
platformId=#{platformId},
</if>
<if test="appid != null">
appid=#{appid},
</if>
<if test="apiKey != null">
apiKey=#{apiKey},
</if>
<if test="secretKey != null">
secretKey=#{secretKey},
</if>
<if test="customerId != null and customerId != ''">
customerId=#{customerId},
</if>
<if test="corpType != null and corpType != ''">
corpType=#{corpType},
</if>
<if test="outType != null and outType != ''">
outType=#{outType},
</if>
<if test="pinyinCode != null and pinyinCode != ''">
pinyinCode=#{pinyinCode},
</if>
<if test="contact != null and contact != ''">
contact=#{contact},
</if>
<if test="mobile != null and mobile != ''">
mobile=#{mobile},
</if>
<if test="sourceAction != null and sourceAction != ''">
sourceAction=#{sourceAction},
</if>
<if test="targetAction != null and targetAction != ''">
targetAction=#{targetAction},
</if>
<if test="invCode != null and invCode != ''">
invCode=#{invCode},
</if>
<if test="invSubCode != null and invSubCode != ''">
invSubCode=#{invSubCode},
</if>
</set>
WHERE id = #{id}
</update>
<select id="selectByName" resultType="com.glxp.udi.admin.entity.inout.UnitMaintainEntity">
select * from io_unit_maintain where name = #{name}
select *
from io_unit_maintain
where name = #{name}
</select>
<update id="unbindPlatform">
update io_unit_maintain set platformId = null where id = #{id}
update io_unit_maintain
set platformId = null
where id = #{id}
</update>
<select id="getUnbindUnitMaintain" resultType="com.glxp.udi.admin.entity.inout.UnitMaintainEntity">
@ -83,12 +130,19 @@
where customerId = #{customerId}
AND (platformId is null or platformId = '')
</select>
<select id="selectByUnitId" resultType="com.glxp.udi.admin.entity.inout.UnitMaintainEntity">
select * from io_unit_maintain where unitId = #{unitId}
select *
from io_unit_maintain
where unitId = #{unitId}
</select>
<select id="getSourceAction" resultType="java.lang.String">
select sourceAction from io_unit_maintain where unitId = #{fromCorpId}
select sourceAction
from io_unit_maintain
where unitId = #{fromCorpId}
</select>
<select id="getboundUnitMaintains" resultType="com.glxp.udi.admin.entity.inout.UnitMaintainEntity">
select name,
unitId,
@ -104,6 +158,7 @@
and sourceAction is not null
and targetAction is not null
</select>
<select id="checkUpload" resultType="java.lang.Integer">
select count(*)
from io_unit_maintain
@ -111,7 +166,11 @@
and platformId is not null
and sourceAction = #{action}
</select>
<select id="countByName" resultType="java.lang.Integer">
select count(*) from io_unit_maintain where name = #{name} and customerId = #{customerId}
select count(*)
from io_unit_maintain
where name = #{name}
and customerId = #{customerId}
</select>
</mapper>

@ -2,26 +2,21 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.glxp.udi.admin.dao.inout.WarehouseBussinessTypeDao">
<resultMap id="BaseResultMap" type="com.glxp.udi.admin.entity.inout.WarehouseBussinessTypeEntity">
<!--@mbg.generated-->
<!--@Table inv_warehouse_bussiness_type-->
<id column="id" jdbcType="INTEGER" property="id"/>
<result column="code" jdbcType="VARCHAR" property="code"/>
<result column="action" jdbcType="VARCHAR" property="action"/>
<result column="name" jdbcType="VARCHAR" property="name"/>
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, code, `action`, `name`
</sql>
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
<!--@mbg.generated-->
select
<include refid="Base_Column_List"/>
from inv_warehouse_bussiness_type
where id = #{id,jdbcType=INTEGER}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
<!--@mbg.generated-->
delete from inv_warehouse_bussiness_type
where id = #{id,jdbcType=INTEGER}
</delete>
@ -34,7 +29,6 @@
</insert>
<insert id="insertSelective" keyColumn="id" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.inout.WarehouseBussinessTypeEntity" useGeneratedKeys="true">
<!--@mbg.generated-->
insert into inv_warehouse_bussiness_type
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="code != null">
@ -61,7 +55,6 @@
</insert>
<update id="updateByPrimaryKeySelective"
parameterType="com.glxp.udi.admin.entity.inout.WarehouseBussinessTypeEntity">
<!--@mbg.generated-->
update inv_warehouse_bussiness_type
<set>
<if test="code != null">
@ -77,7 +70,6 @@
where id = #{id,jdbcType=INTEGER}
</update>
<update id="updateByPrimaryKey" parameterType="com.glxp.udi.admin.entity.inout.WarehouseBussinessTypeEntity">
<!--@mbg.generated-->
update inv_warehouse_bussiness_type
set code = #{code,jdbcType=VARCHAR},
`action` = #{action,jdbcType=VARCHAR},
@ -85,7 +77,6 @@
where id = #{id,jdbcType=INTEGER}
</update>
<update id="updateBatch" parameterType="java.util.List">
<!--@mbg.generated-->
update inv_warehouse_bussiness_type
<trim prefix="set" suffixOverrides=",">
<trim prefix="code = case" suffix="end,">
@ -110,7 +101,6 @@
</foreach>
</update>
<update id="updateBatchSelective" parameterType="java.util.List">
<!--@mbg.generated-->
update inv_warehouse_bussiness_type
<trim prefix="set" suffixOverrides=",">
<trim prefix="code = case" suffix="end,">
@ -141,7 +131,6 @@
</foreach>
</update>
<insert id="batchInsert" keyColumn="id" keyProperty="id" parameterType="map" useGeneratedKeys="true">
<!--@mbg.generated-->
insert into inv_warehouse_bussiness_type
(code, `action`, `name`)
values
@ -152,7 +141,6 @@
</insert>
<insert id="insertOrUpdate" keyColumn="id" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.inout.WarehouseBussinessTypeEntity" useGeneratedKeys="true">
<!--@mbg.generated-->
insert into inv_warehouse_bussiness_type
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">
@ -183,7 +171,6 @@
</insert>
<insert id="insertOrUpdateSelective" keyColumn="id" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.inout.WarehouseBussinessTypeEntity" useGeneratedKeys="true">
<!--@mbg.generated-->
insert into inv_warehouse_bussiness_type
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">

@ -2,8 +2,6 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.glxp.udi.admin.dao.inout.WarehouseUserDao">
<resultMap id="BaseResultMap" type="com.glxp.udi.admin.entity.inout.WarehouseUserEntity">
<!--@mbg.generated-->
<!--@Table inv_warehouse_user-->
<id column="id" jdbcType="INTEGER" property="id"/>
<result column="code" jdbcType="VARCHAR" property="code"/>
<result column="userId" jdbcType="BIGINT" property="userid"/>
@ -11,32 +9,30 @@
<result column="isDirector" javaType="boolean" property="isDirector"/>
</resultMap>
<sql id="Base_Column_List">
<!--@mbg.generated-->
id, code, userId, userName, isDirector
id,
code,
userId,
userName,
isDirector
</sql>
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
<!--@mbg.generated-->
select
<include refid="Base_Column_List"/>
from inv_warehouse_user
where id = #{id,jdbcType=INTEGER}
</select>
<delete id="deleteByPrimaryKey" parameterType="java.lang.Integer">
<!--@mbg.generated-->
delete from inv_warehouse_user
delete
from inv_warehouse_user
where id = #{id,jdbcType=INTEGER}
</delete>
<insert id="insert" keyColumn="id" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.inout.WarehouseUserEntity" useGeneratedKeys="true">
<!--@mbg.generated-->
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>
<insert id="insertSelective" keyColumn="id" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.inout.WarehouseUserEntity" useGeneratedKeys="true">
<!--@mbg.generated-->
insert into inv_warehouse_user
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="code != null">
@ -64,7 +60,6 @@
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.glxp.udi.admin.entity.inout.WarehouseUserEntity">
<!--@mbg.generated-->
update inv_warehouse_user
<set>
<if test="code != null">
@ -81,16 +76,13 @@
where id = #{id,jdbcType=INTEGER}
</update>
<update id="updateByPrimaryKey" parameterType="com.glxp.udi.admin.entity.inout.WarehouseUserEntity">
<!--@mbg.generated-->
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>
<update id="updateBatch" parameterType="java.util.List">
<!--@mbg.generated-->
update inv_warehouse_user
<trim prefix="set" suffixOverrides=",">
<trim prefix="code = case" suffix="end,">
@ -115,7 +107,6 @@
</foreach>
</update>
<update id="updateBatchSelective" parameterType="java.util.List">
<!--@mbg.generated-->
update inv_warehouse_user
<trim prefix="set" suffixOverrides=",">
<trim prefix="code = case" suffix="end,">
@ -146,19 +137,16 @@
</foreach>
</update>
<insert id="batchInsert" keyColumn="id" keyProperty="id" parameterType="map" useGeneratedKeys="true">
<!--@mbg.generated-->
insert into inv_warehouse_user
(code, userId, userName, isDirector)
(code, userId, userName, isDirector)
values
<foreach collection="list" item="item" separator=",">
(#{item.code,jdbcType=VARCHAR}, #{item.userid,jdbcType=BIGINT}, #{item.username,jdbcType=VARCHAR},
#{item.isDirector}
)
#{item.isDirector})
</foreach>
</insert>
<insert id="insertOrUpdate" keyColumn="id" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.inout.WarehouseUserEntity" useGeneratedKeys="true">
<!--@mbg.generated-->
insert into inv_warehouse_user
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">
@ -184,14 +172,13 @@
<if test="id != null">
id = #{id,jdbcType=INTEGER},
</if>
code = #{code,jdbcType=VARCHAR},
userId = #{userid,jdbcType=BIGINT},
code = #{code,jdbcType=VARCHAR},
userId = #{userid,jdbcType=BIGINT},
userName = #{username,jdbcType=VARCHAR},
</trim>
</insert>
<insert id="insertOrUpdateSelective" keyColumn="id" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.inout.WarehouseUserEntity" useGeneratedKeys="true">
<!--@mbg.generated-->
insert into inv_warehouse_user
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="id != null">
@ -242,7 +229,7 @@
<select id="selectListByCode" resultMap="BaseResultMap">
select inv_warehouse_user.*, auth_user.employeeName
from inv_warehouse_user
inner join auth_user on auth_user.id = inv_warehouse_user.userId
inner join auth_user on auth_user.id = inv_warehouse_user.userId
where code = #{code}
</select>
@ -270,6 +257,8 @@
</update>
<select id="selectCodeByUserId" resultType="java.lang.String">
select code from inv_warehouse_user where userId = #{userId}
select code
from inv_warehouse_user
where userId = #{userId}
</select>
</mapper>

@ -2,10 +2,10 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.inventory.InvStockPrintDao">
<select id="filterStockPrint" parameterType="com.glxp.udi.admin.req.basic.FilterStockprintRequest"
resultType="com.glxp.udi.admin.entity.basic.StockPrintEntity">
SELECT * FROM inv_stockprint
SELECT *
FROM inv_stockprint
<where>
<if test="nameCode != '' and nameCode != null">
AND inv_stockprint.nameCode = #{nameCode}
@ -17,10 +17,10 @@
AND inv_stockprint.printStatus = #{printStatus}
</if>
<if test="cpmctymc != '' and cpmctymc != null">
AND cpmctymc like concat('%',#{cpmctymc},'%')
AND cpmctymc like concat('%', #{cpmctymc}, '%')
</if>
<if test="thirdName != '' and thirdName != null">
AND inv_stockprint.thirdName like concat('%',#{thirdName},'%')
AND inv_stockprint.thirdName like concat('%', #{thirdName}, '%')
</if>
<if test="thirdId != '' and thirdId != null">
AND inv_stockprint.thirdId = #{thirdId}
@ -40,22 +40,30 @@
<if test="id != '' and id != null">
AND inv_stockprint.id = #{id}
</if>
</where>
</select>
<select id="filterJoinStockPrint" parameterType="com.glxp.udi.admin.req.basic.FilterStockprintRequest"
resultType="com.glxp.udi.admin.entity.basic.StockPrintEntity">
SELECT
inv_stockprint.id,
inv_stockprint.udiCode,inv_stockprint.nameCode,inv_stockprint.batchNo,inv_stockprint.produceDate,
inv_stockprint.expireDate,inv_stockprint.serialNo,inv_stockprint.warehouseCode,inv_stockprint.spaceCode,
inv_stockprint.count,basic_products.cpmctymc,basic_products.ylqxzcrbarmc,basic_products.zczbhhzbapzbh,basic_products.ggxh,basic_udirel.manufactory
SELECT inv_stockprint.id,
inv_stockprint.udiCode,
inv_stockprint.nameCode,
inv_stockprint.batchNo,
inv_stockprint.produceDate,
inv_stockprint.expireDate,
inv_stockprint.serialNo,
inv_stockprint.warehouseCode,
inv_stockprint.spaceCode,
inv_stockprint.count,
io_productinfo.cpmctymc,
io_productinfo.ylqxzcrbarmc,
io_productinfo.zczbhhzbapzbh,
io_productinfo.ggxh,
io_productinfo.manufactory
FROM inv_stockprint
left join basic_udirel ON inv_stockprint.udiRlIdFk = basic_udirel.id
inner join basic_products ON basic_products.uuid = basic_udirel.uuid
left join udi_relevance ON inv_stockprint.udiRlIdFk = udi_relevance.id
inner join io_productinfo ON io_productinfo.uuid = udi_relevance.uuid
<where>
<if test="nameCode != '' and nameCode != null">
AND inv_stockprint.nameCode = #{nameCode}
@ -67,10 +75,10 @@
AND printStatus = #{printStatus}
</if>
<if test="cpmctymc != '' and cpmctymc != null">
AND inv_stockprint.cpmctymc like concat('%',#{cpmctymc},'%')
AND inv_stockprint.cpmctymc like concat('%', #{cpmctymc}, '%')
</if>
<if test="thirdName != '' and thirdName != null">
AND inv_stockprint.thirdName like concat('%',#{thirdName},'%')
AND inv_stockprint.thirdName like concat('%', #{thirdName}, '%')
</if>
<if test="thirdId != '' and thirdId != null">
AND inv_stockprint.thirdId = #{thirdId}
@ -91,18 +99,16 @@
AND inv_stockprint.id = #{id}
</if>
and diType = 1
</where>
</select>
<select id="findByNameCode" parameterType="java.lang.String"
resultType="com.glxp.udi.admin.entity.basic.StockPrintEntity">
SELECT *
FROM inv_stockprint
WHERE (
nameCode = #{nameCode}) limit 1
nameCode = #{nameCode})
limit 1
</select>
<select id="findByRlId" parameterType="com.glxp.udi.admin.req.basic.FilterStockprintRequest"
resultType="com.glxp.udi.admin.entity.basic.StockPrintEntity">
@ -114,75 +120,66 @@
and spaceCode = #{spaceCode}
and genKeyFk = #{genKeyFk}limit 1
</select>
<insert id="insertStockPrint" keyProperty="id" parameterType="com.glxp.udi.admin.entity.basic.StockPrintEntity">
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})
</insert>
<insert id="insertStockPrints" keyProperty="id" parameterType="java.util.List">
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
<foreach collection="stockPrintEntities" item="item" index="index"
separator=",">
(
#{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})
</foreach>
</insert>
@ -201,36 +198,79 @@
<update id="updateStockPrint" parameterType="com.glxp.udi.admin.entity.basic.StockPrintEntity">
UPDATE inv_stockprint
<trim prefix="set" suffixOverrides=",">
<if test="udiCode != null">udiCode=#{udiCode},</if>
<if test="udiRlIdFk != null">udiRlIdFk=#{udiRlIdFk},</if>
<if test="nameCode != null">nameCode=#{nameCode},</if>
<if test="cpmctymc != null">cpmctymc=#{cpmctymc},</if>
<if test="batchNo != null">batchNo=#{batchNo},</if>
<if test="produceDate != null">produceDate=#{produceDate},</if>
<if test="expireDate != null">expireDate=#{expireDate},</if>
<if test="serialNo != null">serialNo=#{serialNo},</if>
<if test="codeType != null">codeType=#{codeType},</if>
<if test="thirdId != null">thirdId=#{thirdId},</if>
<if test="thirdName != null">thirdName=#{thirdName},</if>
<if test="printStatus != null">printStatus=#{printStatus},</if>
<if test="ggxh != null">ggxh=#{ggxh},</if>
<if test="ylqxzcrbarmc != null">ylqxzcrbarmc=#{ylqxzcrbarmc},</if>
<if test="zczbhhzbapzbh != null">zczbhhzbapzbh=#{zczbhhzbapzbh},</if>
<if test="warehouseName != null">warehouseName=#{warehouseName},</if>
<if test="warehouseCode != null">warehouseCode=#{warehouseCode},</if>
<if test="spaceCode != null">spaceCode=#{spaceCode},</if>
<if test="spaceName != null">spaceName=#{spaceName},</if>
<if test="genKeyFk != null">genKeyFk=#{genKeyFk},</if>
<if test="sOrderId != null">sOrderId=#{sOrderId},</if>
<if test="sDetailId != null">sDetailId=#{sDetailId},</if>
<if test="count != null">`count`=#{count},</if>
<if test="udiCode != null">
udiCode=#{udiCode},
</if>
<if test="udiRlIdFk != null">
udiRlIdFk=#{udiRlIdFk},
</if>
<if test="nameCode != null">
nameCode=#{nameCode},
</if>
<if test="cpmctymc != null">
cpmctymc=#{cpmctymc},
</if>
<if test="batchNo != null">
batchNo=#{batchNo},
</if>
<if test="produceDate != null">
produceDate=#{produceDate},
</if>
<if test="expireDate != null">
expireDate=#{expireDate},
</if>
<if test="serialNo != null">
serialNo=#{serialNo},
</if>
<if test="codeType != null">
codeType=#{codeType},
</if>
<if test="thirdId != null">
thirdId=#{thirdId},
</if>
<if test="thirdName != null">
thirdName=#{thirdName},
</if>
<if test="printStatus != null">
printStatus=#{printStatus},
</if>
<if test="ggxh != null">
ggxh=#{ggxh},
</if>
<if test="ylqxzcrbarmc != null">
ylqxzcrbarmc=#{ylqxzcrbarmc},
</if>
<if test="zczbhhzbapzbh != null">
zczbhhzbapzbh=#{zczbhhzbapzbh},
</if>
<if test="warehouseName != null">
warehouseName=#{warehouseName},
</if>
<if test="warehouseCode != null">
warehouseCode=#{warehouseCode},
</if>
<if test="spaceCode != null">
spaceCode=#{spaceCode},
</if>
<if test="spaceName != null">
spaceName=#{spaceName},
</if>
<if test="genKeyFk != null">
genKeyFk=#{genKeyFk},
</if>
<if test="sOrderId != null">
sOrderId=#{sOrderId},
</if>
<if test="sDetailId != null">
sDetailId=#{sDetailId},
</if>
<if test="count != null">
`count`=#{count},
</if>
</trim>
WHERE id = #{id}
</update>
<update id="updatePrintStatus" parameterType="java.util.List">
update inv_stockprint
set printStatus = 1

@ -2,49 +2,12 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.inventory.InvWarehouseDao">
<select id="filterInvWarehouse" parameterType="com.glxp.udi.admin.req.inventory.FilterInvWarehouseRequest"
resultType="com.glxp.udi.admin.entity.inventory.InvWarehouseEntity">
select * ,(select name from inv_warehouse WHERE a.pcode = code) pName
FROM inv_warehouse a
<where>
<if test="id != '' and id != null">
AND a.id = #{request.id}
</if>
<if test="pid != '' and pid != null">
AND a.pid = #{request.pid}
</if>
<if test="code != '' and code != null">
AND a.code = #{request.code}
</if>
<if test="name != '' and name != null">
AND a.name like concat('%',#{request.name},'%')
</if>
<if test="advanceType != null">
AND a.advanceType = #{request.advanceType}
</if>
<if test="status != null">
AND a.status = #{request.status}
</if>
<if test="isDefault != null">
AND a.isDefault = #{request.isDefault}
</if>
<if test="pcode != null">
AND a.pcode = #{request.pcode}
</if>
<if test="level != null">
AND a.level = #{request.level}
</if>
<if test="customerId != null and customerId != ''">
AND a.customerId = #{request.customerId}
</if>
</where>
</select>
<select id="filterAllByUser" parameterType="com.glxp.udi.admin.req.inventory.FilterInvWarehouseRequest"
resultType="com.glxp.udi.admin.entity.inventory.InvWarehouseEntity">
select inv_warehouse.* from inv_warehouse INNER JOIN inv_warehouse_user
on inv_warehouse.`code` =inv_warehouse_user.code
select inv_warehouse.*
from inv_warehouse
INNER JOIN inv_warehouse_user
on inv_warehouse.`code` = inv_warehouse_user.code
<where>
<if test="id != '' and id != null">
AND id = #{id}
@ -58,7 +21,7 @@
<if test="name != '' and name != null">
AND name = #{name}
</if>
<if test=" advanceType != null">
<if test="advanceType != null">
AND advanceType = #{advanceType}
</if>
<if test="isDefault != null">
@ -76,12 +39,12 @@
</if>
</where>
group by inv_warehouse.code
</select>
<select id="selectMaxCode" parameterType="com.glxp.udi.admin.req.inventory.FilterInvWarehouseRequest"
resultType="com.glxp.udi.admin.entity.inventory.InvWarehouseEntity">
select max(code) as code from inv_warehouse
select max(code) as code
from inv_warehouse
<where>
<if test="id != '' and id != null">
AND id = #{id}
@ -95,7 +58,7 @@
<if test="name != '' and name != null">
AND name = #{name}
</if>
<if test=" advanceType != null">
<if test="advanceType != null">
AND advanceType = #{advanceType}
</if>
<if test="isDefault != null">
@ -108,13 +71,12 @@
AND level = #{level}
</if>
</where>
</select>
<select id="filterGroupInvWarehouse" parameterType="com.glxp.udi.admin.req.inventory.FilterInvWarehouseRequest"
resultType="com.glxp.udi.admin.res.inventory.InvWarehouseResponse">
SELECT * FROM inv_warehouse
resultType="com.glxp.udi.admin.entity.inventory.InvWarehouseEntity">
SELECT *
FROM inv_warehouse
<where>
<if test="id != '' and id != null">
AND id = #{id}
@ -141,13 +103,14 @@
AND customerId = #{customerId}
</if>
</where>
</select>
<select id="getNameByCode" resultType="java.lang.String">
select name
from inv_warehouse
where code = #{fromCorpId}
</select>
<insert id="insertInvWarehouse" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.inventory.InvWarehouseEntity">
replace INTO inv_warehouse
@ -169,39 +132,69 @@
<update id="updateInvWarehouse" parameterType="com.glxp.udi.admin.entity.inventory.InvWarehouseEntity">
UPDATE inv_warehouse
<trim prefix="set" suffixOverrides=",">
<if test="pid != null">pid=#{pid},</if>
<if test="name != null">name=#{name},</if>
<if test="code != null">code=#{code},</if>
<if test="advanceType != null">advanceType=#{advanceType},</if>
<if test="isDefault != null">isDefault=#{isDefault},</if>
<if test="status != null">status=#{status},</if>
<if test="updateTime != null">updateTime=#{updateTime},</if>
<if test="remark != null">remark=#{remark},</if>
<if test="level != null">level=#{level},</if>
<if test="pcode != null">pcode=#{pcode},</if>
<if test="thirdId != null">remark=#{thirdId},</if>
<if test="thirdId1 != null">remark=#{thirdId1},</if>
<if test="thirdId2 != null">remark=#{thirdId2},</if>
<if test="thirdId3 != null">remark=#{thirdId3},</if>
<if test="thirdId4 != null">remark=#{thirdId4},</if>
<if test="pid != null">
pid=#{pid},
</if>
<if test="name != null">
name=#{name},
</if>
<if test="code != null">
code=#{code},
</if>
<if test="advanceType != null">
advanceType=#{advanceType},
</if>
<if test="isDefault != null">
isDefault=#{isDefault},
</if>
<if test="status != null">
status=#{status},
</if>
<if test="updateTime != null">
updateTime=#{updateTime},
</if>
<if test="remark != null">
remark=#{remark},
</if>
<if test="level != null">
level=#{level},
</if>
<if test="pcode != null">
pcode=#{pcode},
</if>
<if test="thirdId != null">
remark=#{thirdId},
</if>
<if test="thirdId1 != null">
remark=#{thirdId1},
</if>
<if test="thirdId2 != null">
remark=#{thirdId2},
</if>
<if test="thirdId3 != null">
remark=#{thirdId3},
</if>
<if test="thirdId4 != null">
remark=#{thirdId4},
</if>
</trim>
WHERE id = #{id}
</update>
<insert id="importInvWarehouse" parameterType="java.util.List">
replace into inv_warehouse (id, pId, code, name, advanceType, isDefault, status,
updateTime, remark, level, pcode) values
updateTime, remark, level, pcode) values
<foreach collection="invWarehouseEntities" item="item" index="index" separator=",">
(#{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})
</foreach>
</insert>
@ -212,10 +205,16 @@
</update>
<select id="selectNameByCode" resultType="java.lang.String">
select name from inv_warehouse where code = #{code}
select name
from inv_warehouse
where code = #{code}
</select>
<select id="count" resultType="java.lang.Integer">
select count(*) from inv_warehouse where name = #{name} and customerId = #{customerId} and code = #{code}
select count(*)
from inv_warehouse
where name = #{name}
and customerId = #{customerId}
and code = #{code}
</select>
</mapper>

@ -2,25 +2,6 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.inventory.StockPrintTempDao">
<select id="filterStockPrintTempEntity" parameterType="com.glxp.udi.admin.req.inventory.FilterStPrintTempRequest"
resultType="com.glxp.udi.admin.entity.inventory.StockPrintTempEntity">
SELECT * FROM inv_stockprint_pdf_temp
<where>
<if test="printCodeIdFk != '' and printCodeIdFk != null">
AND printCodeIdFk = #{printCodeIdFk}
</if>
<if test="id != '' and id != null">
AND id = #{id}
</if>
<if test="stockOrderFk != '' and stockOrderFk != null">
AND stockOrderFk = #{stockOrderFk}
</if>
</where>
</select>
<insert id="insertStockPrintTempEntity" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.inventory.StockPrintTempEntity">
insert INTO inv_stockprint_pdf_temp
@ -31,7 +12,6 @@
#{printCodeIdFk}, #{stockOrderFk}, #{genKey})
</insert>
<delete id="delete" parameterType="com.glxp.udi.admin.req.inventory.DeleteStPrintTempRequest">
DELETE
FROM inv_stockprint_pdf_temp
@ -51,13 +31,22 @@
<update id="updateStockPrintTempEntity" parameterType="com.glxp.udi.admin.entity.inventory.InCodeLogEntity">
UPDATE inv_stockprint_pdf_temp
<set>
<if test="fileName != null">fileName=#{fileName},</if>
<if test="filePath != null">filePath=#{filePath},</if>
<if test="status != null">status=#{status},</if>
<if test="printCodeIdFk != null">printCodeIdFk=#{printCodeIdFk},</if>
<if test="stockOrderFk != null">stockOrderFk=#{stockOrderFk},</if>
<if test="fileName != null">
fileName=#{fileName},
</if>
<if test="filePath != null">
filePath=#{filePath},
</if>
<if test="status != null">
status=#{status},
</if>
<if test="printCodeIdFk != null">
printCodeIdFk=#{printCodeIdFk},
</if>
<if test="stockOrderFk != null">
stockOrderFk=#{stockOrderFk},
</if>
</set>
WHERE genKey = #{genKey}
</update>
</mapper>

@ -11,15 +11,18 @@
<select id="findSystemExcelTemplateByName" parameterType="java.lang.String"
resultType="com.glxp.udi.admin.entity.param.SystemExcelTemplateEntity">
SELECT * FROM system_excel_template where name = #{name}
SELECT *
FROM system_excel_template
where name = #{name}
</select>
<select id="getSystemExcelTemplate" parameterType="com.glxp.udi.admin.req.param.SystemExcelTemplateRequest"
resultType="com.glxp.udi.admin.entity.param.SystemExcelTemplateEntity">
SELECT * FROM system_excel_template
SELECT *
FROM system_excel_template
<where>
<if test="name != null and name != ''">
and name like concat('%',#{name},'%')
and name like concat('%', #{name}, '%')
</if>
</where>
</select>
@ -47,12 +50,11 @@
</update>
<insert id="insertSystemExcelTemplate" parameterType="com.glxp.udi.admin.entity.param.SystemExcelTemplateEntity">
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})
</insert>
</mapper>

@ -2,19 +2,6 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.param.SystemPDFModuleDao">
<select id="queryPage" parameterType="com.glxp.udi.admin.req.param.SystemPDFModuleRequest"
resultType="com.glxp.udi.admin.entity.param.SystemPDFModuleEntity">
SELECT id,name,param,fieldExplain,remark,templateId,create_time,update_time,templateDlUrl,templateType
FROM system_pdf_module
<where>
<if test="templateId != null and '' != templateId">
AND `templateId` LIKE CONCAT(#{templateId},'%')
</if>
<if test="name != null and '' != name">
AND `name` LIKE CONCAT('%', #{name}, '%')
</if>
</where>
</select>
<update id="updateById" parameterType="com.glxp.udi.admin.entity.param.SystemPDFModuleEntity">
UPDATE system_pdf_module
@ -47,22 +34,19 @@
templateType=#{templateType},
</if>
</set>
WHERE id=#{id}
WHERE id = #{id}
</update>
<insert id="insertData" parameterType="com.glxp.udi.admin.entity.param.SystemPDFModuleEntity">
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})
</insert>
<select id="listPDFModules" parameterType="java.lang.Integer"
@ -70,5 +54,4 @@
SELECT id, name
FROM system_pdf_module
</select>
</mapper>

@ -2,7 +2,6 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.param.SystemPDFTemplateDao">
<update id="updateById" parameterType="com.glxp.udi.admin.entity.param.SystemPDFTemplateEntity">
UPDATE system_pdf_template
<set>
@ -43,7 +42,7 @@
customerId = #{customerId}
</if>
</set>
WHERE id=#{id}
WHERE id = #{id}
</update>
<select id="listPDFTemplates" parameterType="java.lang.Integer"
@ -51,10 +50,10 @@
SELECT id, name
FROM system_pdf_template
</select>
<select id="countByName" resultType="java.lang.Integer">
select count(*)
from system_pdf_template
where name = #{name}
</select>
</mapper>

@ -10,17 +10,20 @@
<select id="filterList" parameterType="com.glxp.udi.admin.req.itextpdf.SystemPDFTemplateRelevanceRequest"
resultType="com.glxp.udi.admin.res.param.SystemPDFTemplateRelevanceResponse">
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
<where>
<if test="moduleId != null">
AND system_pdf_template_relevance.`moduleId` = #{moduleId}
@ -36,17 +39,20 @@
<select id="filterAll" parameterType="com.glxp.udi.admin.req.itextpdf.SystemPDFTemplateRelevanceRequest"
resultType="com.glxp.udi.admin.res.param.SystemPDFTemplateRelevanceResponse">
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
<where>
<if test="moduleId != null">
AND system_pdf_template_relevance.`moduleId` = #{moduleId}
@ -77,7 +83,7 @@
<insert id="insertSystemPDFTemplateRelevanceAll">
INSERT INTO system_pdf_template_relevance
(templateId, customerId)
(templateId, customerId)
VALUES
<foreach collection="list" item="item" separator=",">
<if test="item.templateId != null and item.customerId != null">
@ -88,16 +94,14 @@
<insert id="insertData" parameterType="com.glxp.udi.admin.entity.param.SystemPDFTemplateRelevanceEntity">
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})
</insert>
<update id="udpateRl" parameterType="com.glxp.udi.admin.entity.param.SystemPDFTemplateRelevanceEntity">
@ -127,9 +131,7 @@
<if test="remark3 != null">
remark3=#{remark3},
</if>
</trim>
WHERE id = #{id}
</update>
</mapper>

@ -1,141 +1,161 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="com.glxp.udi.admin.dao.param.SystemParamConfigCustomerDao">
<resultMap id="BaseResultMap" type="com.glxp.udi.admin.entity.param.SystemParamConfigCustomerEntity">
<resultMap id="BaseResultMap" type="com.glxp.udi.admin.entity.param.SystemParamConfigCustomerEntity">
<!--@Table system_param_config_customer-->
<id column="id" jdbcType="INTEGER" property="id"/>
<result column="parentId" jdbcType="INTEGER" property="parentId"/>
<result column="paramName" jdbcType="VARCHAR" property="paramName"/>
<result column="paramKey" jdbcType="VARCHAR" property="paramKey"/>
<result column="paramValue" jdbcType="VARCHAR" property="paramValue"/>
<result column="paramStatus" jdbcType="INTEGER" property="paramStatus"/>
<result column="paramType" jdbcType="INTEGER" property="paramType"/>
<result column="paramExplain" jdbcType="VARCHAR" property="paramExplain"/>
<result column="customerId" jdbcType="VARCHAR" property="customerId"/>
</resultMap>
<!--@Table system_param_config_customer-->
<id column="id" jdbcType="INTEGER" property="id" />
<result column="parentId" jdbcType="INTEGER" property="parentId" />
<result column="paramName" jdbcType="VARCHAR" property="paramName" />
<result column="paramKey" jdbcType="VARCHAR" property="paramKey" />
<result column="paramValue" jdbcType="VARCHAR" property="paramValue" />
<result column="paramStatus" jdbcType="INTEGER" property="paramStatus" />
<result column="paramType" jdbcType="INTEGER" property="paramType" />
<result column="paramExplain" jdbcType="VARCHAR" property="paramExplain" />
<result column="customerId" jdbcType="VARCHAR" property="customerId" />
</resultMap>
<sql id="Base_Column_List">
id, parentId, paramName, paramKey, paramValue, paramStatus, paramType, paramExplain,
customerId
</sql>
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
select
<include refid="Base_Column_List" />
from system_param_config_customer
where id = #{id,jdbcType=INTEGER}
</select>
<insert id="insertSelective" keyColumn="id" keyProperty="id" parameterType="com.glxp.udi.admin.entity.param.SystemParamConfigCustomerEntity" useGeneratedKeys="true">
insert into system_param_config_customer
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="parentId != null">
<sql id="Base_Column_List">
id,
parentId,
</if>
<if test="paramName != null">
paramName,
</if>
<if test="paramKey != null">
paramKey,
</if>
<if test="paramValue != null">
paramValue,
</if>
<if test="paramStatus != null">
paramStatus,
</if>
<if test="paramType != null">
paramType,
</if>
<if test="paramExplain != null">
paramExplain,
</if>
<if test="customerId != null">
customerId,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="parentId != null">
#{parentId,jdbcType=INTEGER},
</if>
<if test="paramName != null">
#{paramName,jdbcType=VARCHAR},
</if>
<if test="paramKey != null">
#{paramKey,jdbcType=VARCHAR},
</if>
<if test="paramValue != null">
#{paramValue,jdbcType=VARCHAR},
</if>
<if test="paramStatus != null">
#{paramStatus,jdbcType=INTEGER},
</if>
<if test="paramType != null">
#{paramType,jdbcType=INTEGER},
</if>
<if test="paramExplain != null">
#{paramExplain,jdbcType=VARCHAR},
</if>
<if test="customerId != null">
#{customerId,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective" parameterType="com.glxp.udi.admin.entity.param.SystemParamConfigCustomerEntity">
update system_param_config_customer
<set>
<if test="parentId != null">
parentId = #{parentId,jdbcType=INTEGER},
</if>
<if test="paramName != null">
paramName = #{paramName,jdbcType=VARCHAR},
</if>
<if test="paramKey != null">
paramKey = #{paramKey,jdbcType=VARCHAR},
</if>
<if test="paramValue != null">
paramValue = #{paramValue,jdbcType=VARCHAR},
</if>
<if test="paramStatus != null">
paramStatus = #{paramStatus,jdbcType=INTEGER},
</if>
<if test="paramType != null">
paramType = #{paramType,jdbcType=INTEGER},
</if>
<if test="paramExplain != null">
paramExplain = #{paramExplain,jdbcType=VARCHAR},
</if>
<if test="customerId != null">
customerId = #{customerId,jdbcType=VARCHAR},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update id="updateByPrimaryKey" parameterType="com.glxp.udi.admin.entity.param.SystemParamConfigCustomerEntity">
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}
</update>
customerId
</sql>
<select id="selectCustomizeParam" resultMap="BaseResultMap">
select * from system_param_config_customer where paramStatus = #{systemParamConfigRequest.paramStatus}
and customerId = #{systemParamConfigRequest.customerId}
and paramKey in
<foreach collection="systemParams" index="index" item="item" open="(" close=")" separator=",">
#{item}
</foreach>
</select>
<select id="selectByPrimaryKey" parameterType="java.lang.Integer" resultMap="BaseResultMap">
select
<include refid="Base_Column_List"/>
from system_param_config_customer
where id = #{id,jdbcType=INTEGER}
</select>
<insert id="insertSelective" keyColumn="id" keyProperty="id"
parameterType="com.glxp.udi.admin.entity.param.SystemParamConfigCustomerEntity" useGeneratedKeys="true">
insert into system_param_config_customer
<trim prefix="(" suffix=")" suffixOverrides=",">
<if test="parentId != null">
parentId,
</if>
<if test="paramName != null">
paramName,
</if>
<if test="paramKey != null">
paramKey,
</if>
<if test="paramValue != null">
paramValue,
</if>
<if test="paramStatus != null">
paramStatus,
</if>
<if test="paramType != null">
paramType,
</if>
<if test="paramExplain != null">
paramExplain,
</if>
<if test="customerId != null">
customerId,
</if>
</trim>
<trim prefix="values (" suffix=")" suffixOverrides=",">
<if test="parentId != null">
#{parentId,jdbcType=INTEGER},
</if>
<if test="paramName != null">
#{paramName,jdbcType=VARCHAR},
</if>
<if test="paramKey != null">
#{paramKey,jdbcType=VARCHAR},
</if>
<if test="paramValue != null">
#{paramValue,jdbcType=VARCHAR},
</if>
<if test="paramStatus != null">
#{paramStatus,jdbcType=INTEGER},
</if>
<if test="paramType != null">
#{paramType,jdbcType=INTEGER},
</if>
<if test="paramExplain != null">
#{paramExplain,jdbcType=VARCHAR},
</if>
<if test="customerId != null">
#{customerId,jdbcType=VARCHAR},
</if>
</trim>
</insert>
<update id="updateByPrimaryKeySelective"
parameterType="com.glxp.udi.admin.entity.param.SystemParamConfigCustomerEntity">
update system_param_config_customer
<set>
<if test="parentId != null">
parentId = #{parentId,jdbcType=INTEGER},
</if>
<if test="paramName != null">
paramName = #{paramName,jdbcType=VARCHAR},
</if>
<if test="paramKey != null">
paramKey = #{paramKey,jdbcType=VARCHAR},
</if>
<if test="paramValue != null">
paramValue = #{paramValue,jdbcType=VARCHAR},
</if>
<if test="paramStatus != null">
paramStatus = #{paramStatus,jdbcType=INTEGER},
</if>
<if test="paramType != null">
paramType = #{paramType,jdbcType=INTEGER},
</if>
<if test="paramExplain != null">
paramExplain = #{paramExplain,jdbcType=VARCHAR},
</if>
<if test="customerId != null">
customerId = #{customerId,jdbcType=VARCHAR},
</if>
</set>
where id = #{id,jdbcType=INTEGER}
</update>
<update id="updateByPrimaryKey" parameterType="com.glxp.udi.admin.entity.param.SystemParamConfigCustomerEntity">
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}
</update>
<select id="countByCustomerId" resultType="int">
select count(*) from system_param_config_customer where paramKey = #{paramKey} and customerId = #{customerId}
</select>
<select id="selectCustomizeParam" resultMap="BaseResultMap">
select *
from system_param_config_customer where paramStatus = #{systemParamConfigRequest.paramStatus}
and customerId = #{systemParamConfigRequest.customerId}
and paramKey in
<foreach collection="systemParams" index="index" item="item" open="(" close=")" separator=",">
#{item}
</foreach>
</select>
<select id="countByCustomerId" resultType="int">
select count(*)
from system_param_config_customer
where paramKey = #{paramKey}
and customerId = #{customerId}
</select>
<select id="selectByParamKeyAndCustomerId" resultMap="BaseResultMap">
select * from system_param_config_customer where paramKey = #{paramKey} and customerId = #{customerId}
<select id="selectByParamKeyAndCustomerId" resultMap="BaseResultMap">
select *
from system_param_config_customer
where paramKey = #{paramKey}
and customerId = #{customerId}
</select>
</mapper>

@ -2,16 +2,18 @@
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd" >
<mapper namespace="com.glxp.udi.admin.dao.param.SystemParamConfigDao">
<select id="findSystemParamConfig" parameterType="com.glxp.udi.admin.req.param.SystemParamConfigRequest"
resultType="com.glxp.udi.admin.entity.param.SystemParamConfigEntity">
SELECT * FROM system_param_config WHERE id=#{id}
SELECT *
FROM system_param_config
WHERE id = #{id}
</select>
<select id="selectByParamName" parameterType="com.glxp.udi.admin.req.param.SystemParamConfigRequest"
resultType="com.glxp.udi.admin.entity.param.SystemParamConfigEntity">
SELECT * FROM system_param_config WHERE paramName=#{paramName}
SELECT *
FROM system_param_config
WHERE paramName = #{paramName}
</select>
<update id="updateParentId" parameterType="com.glxp.udi.admin.entity.param.SystemParamConfigEntity">
@ -21,25 +23,23 @@
paramStatus=#{paramStatus},
</if>
</set>
WHERE parentId=#{parentId}
WHERE parentId = #{parentId}
</update>
<insert id="insertData" parameterType="com.glxp.udi.admin.entity.param.SystemParamConfigEntity">
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})
</insert>
<select id="selectCustomizeParam" resultType="com.glxp.udi.admin.entity.param.SystemParamConfigEntity">
select * from system_param_config where paramKey in
select *
from system_param_config where paramKey in
<foreach collection="systemParams" index="index" item="item" open="(" close=")" separator=",">
#{item}
</foreach>

Loading…
Cancel
Save