Merge remote-tracking branch 'origin/master' into 20240109-yw
commit
d2a3925762
@ -0,0 +1,11 @@
|
|||||||
|
package com.glxp.api.req.stat;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class StatOnlineRequest {
|
||||||
|
|
||||||
|
private Long companyId;
|
||||||
|
private Long bussinessStatus;
|
||||||
|
private Integer traceSource;
|
||||||
|
}
|
@ -0,0 +1,121 @@
|
|||||||
|
package com.glxp.api.res.stat;
|
||||||
|
|
||||||
|
import lombok.Data;
|
||||||
|
|
||||||
|
@Data
|
||||||
|
public class OnlineTotalResponse {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 器械数量总数
|
||||||
|
*/
|
||||||
|
private int qxCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 试剂数量总数
|
||||||
|
*/
|
||||||
|
private int sjCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 产品总数量
|
||||||
|
*/
|
||||||
|
private int productCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 一类产品数量
|
||||||
|
*/
|
||||||
|
private int levelOneCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 二类产品数量
|
||||||
|
*/
|
||||||
|
private int levelTwoCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 三类产品数量
|
||||||
|
*/
|
||||||
|
private int levelthreeCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 集采数量
|
||||||
|
*/
|
||||||
|
private int groupBuyCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 非集采数量
|
||||||
|
*/
|
||||||
|
private int unGroupCount;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 医保数量
|
||||||
|
*/
|
||||||
|
private int chsCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 非医保数量
|
||||||
|
*/
|
||||||
|
private int unChsCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 进口数量
|
||||||
|
*/
|
||||||
|
private int importCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 非进口数量
|
||||||
|
*/
|
||||||
|
private int unImportCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 赋码数量
|
||||||
|
*/
|
||||||
|
private int tagCount;
|
||||||
|
/**
|
||||||
|
* 未赋码数量
|
||||||
|
*/
|
||||||
|
private int unTagCount;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 供应商数量
|
||||||
|
*/
|
||||||
|
private int supCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 客户数量
|
||||||
|
*/
|
||||||
|
private int customCount;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 带票入库
|
||||||
|
*/
|
||||||
|
private int purNormal;
|
||||||
|
/**
|
||||||
|
* 预入库
|
||||||
|
*/
|
||||||
|
private int purPreIn;
|
||||||
|
/**
|
||||||
|
* 寄售入库
|
||||||
|
*/
|
||||||
|
private int purPre;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 一类赋码数量
|
||||||
|
*/
|
||||||
|
private int levelOneTagCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 二类赋码数量
|
||||||
|
*/
|
||||||
|
private int levelTwoTagCount;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 三类赋码数量
|
||||||
|
*/
|
||||||
|
private int levelthreeTagCount;
|
||||||
|
|
||||||
|
private int manuProductCount;
|
||||||
|
private int supProudctCount;
|
||||||
|
private int hospProductCount;
|
||||||
|
}
|
@ -1,4 +1,22 @@
|
|||||||
<?xml version="1.0" encoding="UTF-8"?>
|
<?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">
|
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||||
<mapper namespace="com.glxp.api.dao.trace.TraceRecordDetailMapper">
|
<mapper namespace="com.glxp.api.dao.trace.TraceRecordDetailMapper">
|
||||||
|
<select id="statOnlineCount" parameterType="com.glxp.api.req.stat.StatOnlineRequest"
|
||||||
|
resultType="com.glxp.api.res.basic.BasicUdiRelResponse">
|
||||||
|
select p.cplx, p.categoryLevel, p.groupBuy, p.chsType, p.importType, p.nameCode,uc.bussinessStatus
|
||||||
|
from trace_product_record tpr
|
||||||
|
INNER JOIN basic_udi_product p on tpr.nameCode = p.nameCode
|
||||||
|
left join user_company uc on tpr.companyIdFk = uc.id
|
||||||
|
<where>
|
||||||
|
<if test="companyId != '' and companyId != null">
|
||||||
|
AND tpr.companyIdFk = #{companyId}
|
||||||
|
</if>
|
||||||
|
<if test="bussinessStatus != '' and bussinessStatus != null">
|
||||||
|
AND uc.bussinessStatus = #{bussinessStatus}
|
||||||
|
</if>
|
||||||
|
<if test="traceSource != null">
|
||||||
|
AND tpr.traceSource = #{traceSource}
|
||||||
|
</if>
|
||||||
|
</where>
|
||||||
|
</select>
|
||||||
</mapper>
|
</mapper>
|
||||||
|
Loading…
Reference in New Issue