You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.0 KiB
37 lines
1.0 KiB
2 years ago
|
/*
|
||
|
* *
|
||
|
* * @Project 微官网
|
||
|
* * @Author 张剑峰
|
||
|
* * @Date 2020/10/21 下午4:43
|
||
|
* * @Description
|
||
|
* * @Version v1.0.0
|
||
|
* * @Copyright @ 2020 云南新八达科技有限公司 All rights reserved.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
package com.ynxbd.common.bean.lis;
|
||
|
|
||
|
import lombok.Getter;
|
||
|
import lombok.NoArgsConstructor;
|
||
|
import lombok.Setter;
|
||
|
import lombok.ToString;
|
||
|
|
||
|
import java.io.Serializable;
|
||
|
import java.util.List;
|
||
|
|
||
|
@Setter
|
||
|
@Getter
|
||
|
@ToString
|
||
|
@NoArgsConstructor
|
||
|
public class XBDLisBactResult implements Serializable {
|
||
|
private String bactName; // 细菌名称、鉴定结果
|
||
|
private String result; // 结果描述
|
||
|
private String insCode; // 仪器型号
|
||
|
private int seq; // 序号(用于区分每个细菌对应的多个药敏结果)
|
||
|
private List<XBDLisAntbResult> antbResults; // 药敏(做药敏耐药监测时,否则为空)
|
||
|
private List<XBDLisComment> comments; // 评语
|
||
|
private int resultId; // 瑞美结果唯一id
|
||
|
private String comment4RM; // 瑞美评语
|
||
|
|
||
|
}
|