1.调整往来单位和自助平台关联功能
parent
774155618b
commit
d25b0321e7
@ -0,0 +1,100 @@
|
||||
package com.glxp.udi.admin.entity.inout;
|
||||
|
||||
import com.baomidou.mybatisplus.annotation.IdType;
|
||||
import com.baomidou.mybatisplus.annotation.TableField;
|
||||
import com.baomidou.mybatisplus.annotation.TableId;
|
||||
import com.baomidou.mybatisplus.annotation.TableName;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 医院客户表
|
||||
*/
|
||||
@Data
|
||||
@TableName(value = "io_unit_maintain_platform")
|
||||
public class UnitMaintainPlatform {
|
||||
|
||||
@TableId(value = "id", type = IdType.AUTO)
|
||||
private Integer id;
|
||||
|
||||
/**
|
||||
* 往来单位ID
|
||||
*/
|
||||
@TableField(value = "unitId")
|
||||
private String unitId;
|
||||
|
||||
/**
|
||||
* 客户ID
|
||||
*/
|
||||
@TableField(value = "customerId")
|
||||
private Long customerId;
|
||||
|
||||
/**
|
||||
* 平台ID
|
||||
*/
|
||||
@TableField(value = "platformId")
|
||||
private String platformId;
|
||||
|
||||
/**
|
||||
* 源单据类型
|
||||
*/
|
||||
@TableField(value = "sourceAction")
|
||||
private String sourceAction;
|
||||
|
||||
/**
|
||||
* 目标单据类型
|
||||
*/
|
||||
@TableField(value = "targetAction")
|
||||
private String targetAction;
|
||||
|
||||
/**
|
||||
* 仓库码
|
||||
*/
|
||||
@TableField(value = "invCode")
|
||||
private String invCode;
|
||||
|
||||
/**
|
||||
* 分库码
|
||||
*/
|
||||
@TableField(value = "invSubCode")
|
||||
private String invSubCode;
|
||||
|
||||
/**
|
||||
* 应用名称
|
||||
*/
|
||||
@TableField(value = "appid")
|
||||
private String appid;
|
||||
|
||||
/**
|
||||
* 秘钥
|
||||
*/
|
||||
@TableField(value = "secretKey")
|
||||
private String secretKey;
|
||||
|
||||
/**
|
||||
* 应用ID
|
||||
*/
|
||||
@TableField(value = "apiKey")
|
||||
private String apiKey;
|
||||
|
||||
public static final String COL_ID = "id";
|
||||
|
||||
public static final String COL_UNITID = "unitId";
|
||||
|
||||
public static final String COL_CUSTOMERID = "customerId";
|
||||
|
||||
public static final String COL_PLATFORMID = "platformId";
|
||||
|
||||
public static final String COL_SOURCEACTION = "sourceAction";
|
||||
|
||||
public static final String COL_TARGETACTION = "targetAction";
|
||||
|
||||
public static final String COL_INVCODE = "invCode";
|
||||
|
||||
public static final String COL_INVSUBCODE = "invSubCode";
|
||||
|
||||
public static final String COL_APPID = "appid";
|
||||
|
||||
public static final String COL_APIKEY = "apiKey";
|
||||
|
||||
public static final String COL_SECRETKEY = "secretKey";
|
||||
}
|
@ -1,15 +0,0 @@
|
||||
package com.glxp.udi.admin.req.info;
|
||||
|
||||
import com.glxp.udi.admin.req.ListPageRequest;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 往来单位关联自助平台数据查询实体类
|
||||
*/
|
||||
@Data
|
||||
public class PlatformLinkRequest extends ListPageRequest {
|
||||
|
||||
private String key;
|
||||
private String customerId;
|
||||
|
||||
}
|
@ -0,0 +1,41 @@
|
||||
package com.glxp.udi.admin.req.inout;
|
||||
|
||||
import com.glxp.udi.admin.req.ListPageRequest;
|
||||
import lombok.Data;
|
||||
|
||||
/**
|
||||
* 医院客户请求参数
|
||||
*/
|
||||
@Data
|
||||
public class PlatformLinkRequest extends ListPageRequest {
|
||||
|
||||
private Integer id;
|
||||
|
||||
private String unitId;
|
||||
|
||||
private String corpName;
|
||||
|
||||
private String platformId;
|
||||
|
||||
private String platformUsername;
|
||||
|
||||
private String platformPassword;
|
||||
|
||||
private String appid;
|
||||
|
||||
private String apiKey;
|
||||
|
||||
private String secretKey;
|
||||
|
||||
private String sourceAction;
|
||||
|
||||
private String targetAction;
|
||||
|
||||
private String invCode;
|
||||
|
||||
private String invSubCode;
|
||||
|
||||
private String key;
|
||||
|
||||
private String customerId;
|
||||
}
|
@ -0,0 +1,27 @@
|
||||
<?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.inout.UnitMaintainPlatformDao">
|
||||
<select id="getLinkPlatformList" resultType="com.glxp.udi.admin.res.info.PlatformLinkResponse">
|
||||
select up.id,
|
||||
up.unitId,
|
||||
u.name corpName,
|
||||
u.corpType,
|
||||
u.pinyinCode,
|
||||
ap.name platformName,
|
||||
ap.id platformId,
|
||||
up.sourceAction,
|
||||
up.targetAction,
|
||||
up.invCode,
|
||||
up.invSubCode
|
||||
from io_unit_maintain_platform up
|
||||
left join io_unit_maintain u on up.unitId = u.unitId
|
||||
left join auth_platform ap on up.platformId = ap.id
|
||||
where up.customerId = #{customerId}
|
||||
<if test="key != null and key != ''">
|
||||
AND (u.unitId like concat('%', #{key}, '%')
|
||||
or u.name like concat('%', #{key}, '%')
|
||||
or u.pinyinCode like concat('%', #{key}, '%')
|
||||
)
|
||||
</if>
|
||||
</select>
|
||||
</mapper>
|
Loading…
Reference in New Issue