标本全程监控

This commit is contained in:
tangw 2026-02-06 14:01:40 +08:00
parent df98858efc
commit 36bfc46cc7
2 changed files with 6 additions and 3 deletions

View File

@ -2,10 +2,15 @@ package com.czlis.liswork.pojo.DTO;
import com.fasterxml.jackson.annotation.JsonFormat; import com.fasterxml.jackson.annotation.JsonFormat;
import io.swagger.annotations.ApiModelProperty; import io.swagger.annotations.ApiModelProperty;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.util.Date; import java.util.Date;
@Data
@AllArgsConstructor
@NoArgsConstructor
public class QcValDTO { public class QcValDTO {
private Long qc_valid; private Long qc_valid;
@ApiModelProperty(value = "仪器") @ApiModelProperty(value = "仪器")

View File

@ -116,10 +116,8 @@
<if test="yq != null and yq !=''">and qc_val.yq = #{yq}</if> <if test="yq != null and yq !=''">and qc_val.yq = #{yq}</if>
<if test="xmdh != null and xmdh !=''">and qc_val.xmdh = #{xmdh}</if> <if test="xmdh != null and xmdh !=''">and qc_val.xmdh = #{xmdh}</if>
<if test="zkph != null and zkph !=''">and qc_val.zkph = #{zkph}</if> <if test="zkph != null and zkph !=''">and qc_val.zkph = #{zkph}</if>
<if test="zkpph != null and zkpph !=''">and qc_sample.zkpph = #{zkpph}</if>
<if test="zkrq1 != null">and qc_val.zkrq>= #{zkrq1} </if> <if test="zkrq1 != null">and qc_val.zkrq>= #{zkrq1} </if>
<if test="zkrq2 != null">and #{zkrq2}>= qc_val.zkrq </if> <if test="zkrq2 != null">and #{zkrq2}>= qc_val.zkrq </if>
<if test="cs != null and cs !=10">and qc_val.cs = #{cs}</if>
</where> </where>
group by qc_val.yq,qc_val.zkph,qc_val.xmdh,xm_info.xmmc,xm_info.dyxh,qc_sample.zkbz,qc_sample.sd,qc_sample.cv group by qc_val.yq,qc_val.zkph,qc_val.xmdh,xm_info.xmmc,xm_info.dyxh,qc_sample.zkbz,qc_sample.sd,qc_sample.cv
order by xm_info.dyxh,qc_val.zkph order by xm_info.dyxh,qc_val.zkph