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.
32 lines
879 B
32 lines
879 B
/*
|
|
* *
|
|
* * @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;
|
|
|
|
@Setter
|
|
@Getter
|
|
@ToString
|
|
@NoArgsConstructor
|
|
public class XBDLisAntbResult implements Serializable {
|
|
private String antbCode;// 药敏代码
|
|
private String antbName;// 药敏名称
|
|
private String result; // 检测结果(eg:敏感(S)、中介(I)、耐药(R))
|
|
private String mic; // 抑菌浓度
|
|
private String insCode; // 仪器型号
|
|
private int seq; // 细菌序号(用于区分每个细菌对应的多个药敏结果)
|
|
}
|
|
|